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/sharebymail/src | |
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/sharebymail/src')
-rw-r--r-- | apps/sharebymail/src/components/AdminSettings.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/sharebymail/src/components/AdminSettings.vue b/apps/sharebymail/src/components/AdminSettings.vue index 861afa4add1..8a681110216 100644 --- a/apps/sharebymail/src/components/AdminSettings.vue +++ b/apps/sharebymail/src/components/AdminSettings.vue @@ -44,7 +44,8 @@ import { loadState } from '@nextcloud/initial-state' import { showError } from '@nextcloud/dialogs' import axios from '@nextcloud/axios' import { generateOcsUrl } from '@nextcloud/router' -import confirmPassword from '@nextcloud/password-confirmation' +import { confirmPassword } from '@nextcloud/password-confirmation' +import '@nextcloud/password-confirmation/dist/style.css' export default { name: 'AdminSettings', |