From 8ab5c35a3d4e0fe7894777dec0bba540db173414 Mon Sep 17 00:00:00 2001 From: Pietro Tamburini Date: Mon, 29 Apr 2024 16:02:58 +0200 Subject: [PATCH] fix: prettier fix --- frontend/src/components/prompts/UploadFiles.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/prompts/UploadFiles.vue b/frontend/src/components/prompts/UploadFiles.vue index 88a0b607..8dce0497 100644 --- a/frontend/src/components/prompts/UploadFiles.vue +++ b/frontend/src/components/prompts/UploadFiles.vue @@ -91,7 +91,7 @@ export default { }, }, methods: { - ...mapActions(useUploadStore, ["reset"]), // Mapping reset action from upload store + ...mapActions(useUploadStore, ["reset"]), // Mapping reset action from upload store toggle: function () { this.open = !this.open; }, @@ -100,8 +100,8 @@ export default { abortAllUploads(); buttons.done("upload"); this.open = false; - this.reset(); // Resetting the upload store state - this.reload = true; // Trigger reload in the file store + this.reset(); // Resetting the upload store state + this.reload = true; // Trigger reload in the file store } }, },