Remove loading from 404

This commit is contained in:
samaradel
2020-11-22 18:05:31 +02:00
parent f689598322
commit 72d17ac7f7

View File

@@ -129,7 +129,6 @@ export default {
var item = searchRes[i];
result.push({ node: this.objects[item.path] });
}
this.loading = false;
return result;
},
},
@@ -150,6 +149,7 @@ export default {
var item = this.$page.blogs.edges[i];
this.objects[item.node.path] = item.node;
}
this.loading = false;
},
components: {
SearchListItem,