|
@@ -168,7 +168,7 @@
|
|
}).then(res => {
|
|
}).then(res => {
|
|
let data = res.data;
|
|
let data = res.data;
|
|
let tags = data.tags.filter(n => {
|
|
let tags = data.tags.filter(n => {
|
|
- if(!n || n.length == 0) {
|
|
|
|
|
|
+ if(!n || n.length == 0 || n.status == null) {
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
return true;
|
|
@@ -195,7 +195,7 @@
|
|
let data = res.data;
|
|
let data = res.data;
|
|
if(data.tags.length) {
|
|
if(data.tags.length) {
|
|
let tags = data.tags.filter(n => {
|
|
let tags = data.tags.filter(n => {
|
|
- if(!n || n.length == 0) {
|
|
|
|
|
|
+ if(!n || n.length == 0 || n.status == null) {
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
return true;
|