diff --git a/webui/node_modules/.vite/deps/_metadata.json b/webui/node_modules/.vite/deps/_metadata.json index 1aabce9..6f206d3 100644 --- a/webui/node_modules/.vite/deps/_metadata.json +++ b/webui/node_modules/.vite/deps/_metadata.json @@ -1,23 +1,23 @@ { - "hash": "80447977", - "browserHash": "b98131b5", + "hash": "0c3e4771", + "browserHash": "01248067", "optimized": { "axios": { "src": "../../axios/index.js", "file": "axios.js", - "fileHash": "6b5eae63", + "fileHash": "d8d02cf0", "needsInterop": true }, "vue": { "src": "../../vue/dist/vue.runtime.esm-bundler.js", "file": "vue.js", - "fileHash": "de50261f", + "fileHash": "f8034b26", "needsInterop": false }, "vue-router": { "src": "../../vue-router/dist/vue-router.mjs", "file": "vue-router.js", - "fileHash": "4cad12d6", + "fileHash": "b4ca170f", "needsInterop": false } }, diff --git a/webui/src/App.vue b/webui/src/App.vue index f0692f2..a17b4ed 100644 --- a/webui/src/App.vue +++ b/webui/src/App.vue @@ -17,11 +17,12 @@ export default { // title: title of the modal // message: message to show in the modal showModal(title, message) { + // Set the modal data this.modalTitle = title this.modalMsg = message - // Simulate a click on the hidden modal button to open it - this.$refs.openModal.click() + // Show the modal + this.$refs.errModal.showModal() }, // Sets the login status to true @@ -70,10 +71,10 @@ export default {