From c13512450613ba82499e0aada9365715dd30a4fa Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Fri, 12 Apr 2024 10:19:16 -0300 Subject: [PATCH] fix: Prevent try to load NCDialog before mounted Signed-off-by: Vitor Mattos --- src/views/Account/partials/ManagePassword.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/views/Account/partials/ManagePassword.vue b/src/views/Account/partials/ManagePassword.vue index e89e0e8390..6af08a101f 100644 --- a/src/views/Account/partials/ManagePassword.vue +++ b/src/views/Account/partials/ManagePassword.vue @@ -39,9 +39,9 @@ - - - + + + @@ -83,8 +83,12 @@ export default { return { modal: '', certificateEngine: loadState('libresign', 'certificate_engine', ''), + mounted: false, } }, + mounted() { + this.mounted = true + }, methods: { uploadCertificate() { const input = document.createElement('input')