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/workflowengine | |
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/workflowengine')
-rw-r--r-- | apps/workflowengine/src/store.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/workflowengine/src/store.js b/apps/workflowengine/src/store.js index 00701e9e14c..1de22622c5a 100644 --- a/apps/workflowengine/src/store.js +++ b/apps/workflowengine/src/store.js @@ -28,7 +28,8 @@ import Vue from 'vue' import Vuex, { Store } from 'vuex' import axios from '@nextcloud/axios' import { getApiUrl } from './helpers/api' -import confirmPassword from '@nextcloud/password-confirmation' +import { confirmPassword } from '@nextcloud/password-confirmation' +import '@nextcloud/password-confirmation/dist/style.css' import { loadState } from '@nextcloud/initial-state' Vue.use(Vuex) |