From eca23d59168fdc1a0d20303e14d041b96cd6beb4 Mon Sep 17 00:00:00 2001 From: aminecmi Date: Sun, 17 Jul 2022 21:47:22 +0200 Subject: [PATCH] Fixing sorting issues. --- src/views/List.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/List.vue b/src/views/List.vue index 234a79a..bed80a2 100644 --- a/src/views/List.vue +++ b/src/views/List.vue @@ -147,7 +147,7 @@ export default { return r.json(); }).then(result => { this.searchQ = ''; - this.addItem(result); + this.fetchListAndItems(true); }) } }