diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-09-13 18:38:36 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-09-14 17:23:22 +0000 |
commit | 26535e4856617c21dad14f444bd8a4316cae5af3 (patch) | |
tree | b01e881907f0405e39e103f6f6afdd8f40d74520 /apps/settings/src/components/AuthTokenSetupDialogue.vue | |
parent | 204a700f85e17966a15afaa2dc91250e3c8a77b4 (diff) | |
download | nextcloud-server-26535e4856617c21dad14f444bd8a4316cae5af3.tar.gz nextcloud-server-26535e4856617c21dad14f444bd8a4316cae5af3.zip |
Fix unresponsive legacy password confirmation dialog with new dialog in Vue
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/settings/src/components/AuthTokenSetupDialogue.vue')
-rw-r--r-- | apps/settings/src/components/AuthTokenSetupDialogue.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings/src/components/AuthTokenSetupDialogue.vue b/apps/settings/src/components/AuthTokenSetupDialogue.vue index 5a706b153b9..3eae5b389b9 100644 --- a/apps/settings/src/components/AuthTokenSetupDialogue.vue +++ b/apps/settings/src/components/AuthTokenSetupDialogue.vue @@ -81,7 +81,8 @@ <script> import QR from '@chenfengyuan/vue-qrcode' -import confirmPassword from '@nextcloud/password-confirmation' +import { confirmPassword } from '@nextcloud/password-confirmation' +import '@nextcloud/password-confirmation/dist/style.css' import { getRootUrl } from '@nextcloud/router' import NcButton from '@nextcloud/vue/dist/Components/NcButton' |