From bb2388ddb9e1b54a95adcd312c1a6363f912c718 Mon Sep 17 00:00:00 2001 From: Hubert Van De Walle Date: Sat, 4 Jul 2020 18:46:42 +0200 Subject: [PATCH] Fix reloading --- frontend/pages/notes/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/pages/notes/index.vue b/frontend/pages/notes/index.vue index 055ae13..553bdef 100644 --- a/frontend/pages/notes/index.vue +++ b/frontend/pages/notes/index.vue @@ -35,7 +35,7 @@ export default { ...mapState('notes', ['notes', 'isInitialized']), }, mounted() { - this.load() + if (!this.isInitialized) this.load() }, methods: { ...mapActions('notes', ['load']),