Skip to content

Commit 76c52b9

Browse files
committed
chore: fix props casing
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent e4f2603 commit 76c52b9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/PasswordDialog.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,18 +112,18 @@ function selectPasswordField() {
112112

113113
<template>
114114
<NcDialog
115-
is-form
115+
isForm
116116
:buttons
117117
:name="t('Authentication required')"
118-
:content-classes="$style.passwordDialog"
118+
:contentClasses="$style.passwordDialog"
119119
@update:open="emit('close', false)">
120120
<p>{{ t('This action needs authentication, please confirm it by entering your password.') }}</p>
121121
<NcPasswordField
122122
ref="field"
123123
v-model="password"
124124
:label="t('Password')"
125-
:helper-text="helperText"
126-
:check-password-strength="false"
125+
:helperText
126+
:checkPasswordStrength="false"
127127
:error="hasError !== false"
128128
required />
129129
</NcDialog>

0 commit comments

Comments
 (0)