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