We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4f2603 commit 76c52b9Copy full SHA for 76c52b9
1 file changed
src/components/PasswordDialog.vue
@@ -112,18 +112,18 @@ function selectPasswordField() {
112
113
<template>
114
<NcDialog
115
- is-form
+ isForm
116
:buttons
117
:name="t('Authentication required')"
118
- :content-classes="$style.passwordDialog"
+ :contentClasses="$style.passwordDialog"
119
@update:open="emit('close', false)">
120
<p>{{ t('This action needs authentication, please confirm it by entering your password.') }}</p>
121
<NcPasswordField
122
ref="field"
123
v-model="password"
124
:label="t('Password')"
125
- :helper-text="helperText"
126
- :check-password-strength="false"
+ :helperText
+ :checkPasswordStrength="false"
127
:error="hasError !== false"
128
required />
129
</NcDialog>
0 commit comments