From 72d17ac7f7d164d983b0178f4b8e6f9d1de3edcd Mon Sep 17 00:00:00 2001 From: samaradel Date: Sun, 22 Nov 2020 18:05:31 +0200 Subject: [PATCH] Remove loading from 404 --- src/templates/Search.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/Search.vue b/src/templates/Search.vue index 7e7159874..a22708005 100644 --- a/src/templates/Search.vue +++ b/src/templates/Search.vue @@ -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,