|
14 | 14 | </NcCheckboxRadioSwitch> |
15 | 15 |
|
16 | 16 | <div v-if="enabled" class="tsa-config-container"> |
17 | | - <NcTextField :value="tsa_url" |
| 17 | + <NcTextField :modelValue="tsa_url" |
18 | 18 | :label="t('libresign', 'TSA Server URL')" |
19 | 19 | :placeholder="t('libresign', 'Enter the timestamp server URL')" |
20 | 20 | :disabled="loading" |
21 | 21 | :loading="loading" |
22 | 22 | :error="!!errors.tsa_url" |
23 | 23 | :helper-text="getHelperText('tsa_url')" |
24 | | - @update:value="(value) => updateField('tsa_url', value)" /> |
| 24 | + @update:modelValue="(value) => updateField('tsa_url', value)" /> |
25 | 25 |
|
26 | | - <NcTextField :value="tsa_policy_oid" |
| 26 | + <NcTextField :modelValue="tsa_policy_oid" |
27 | 27 | :label="t('libresign', 'TSA Policy OID')" |
28 | 28 | :placeholder="t('libresign', 'Optional')" |
29 | 29 | :disabled="loading" |
30 | 30 | :loading="loading" |
31 | 31 | :error="!!errors.tsa_policy_oid" |
32 | 32 | :helper-text="getHelperText('tsa_policy_oid')" |
33 | | - @update:value="(value) => updateField('tsa_policy_oid', value)" /> |
| 33 | + @update:modelValue="(value) => updateField('tsa_policy_oid', value)" /> |
34 | 34 |
|
35 | 35 | <NcSelect v-model="selectedAuthType" |
36 | 36 | :options="authOptions" |
|
40 | 40 | clearable /> |
41 | 41 |
|
42 | 42 | <template v-if="tsa_auth_type === AUTH_TYPES.BASIC"> |
43 | | - <NcTextField :value="tsa_username" |
| 43 | + <NcTextField :modelValue="tsa_username" |
44 | 44 | :label="t('libresign', 'Username')" |
45 | 45 | :placeholder="t('libresign', 'Username')" |
46 | 46 | :disabled="loading" |
47 | 47 | :loading="loading" |
48 | 48 | :error="!!errors.tsa_username" |
49 | 49 | :helper-text="getHelperText('tsa_username')" |
50 | | - @update:value="(value) => updateField('tsa_username', value)" /> |
| 50 | + @update:modelValue="(value) => updateField('tsa_username', value)" /> |
51 | 51 |
|
52 | | - <NcPasswordField :value="tsa_password" |
| 52 | + <NcPasswordField :modelValue="tsa_password" |
53 | 53 | :label="t('libresign', 'Password')" |
54 | 54 | :placeholder="t('libresign', 'Password')" |
55 | 55 | :disabled="loading" |
56 | 56 | :loading="loading" |
57 | 57 | :error="!!errors.tsa_password" |
58 | 58 | :helper-text="getHelperText('tsa_password')" |
59 | | - @update:value="(value) => updateField('tsa_password', value)" /> |
| 59 | + @update:modelValue="(value) => updateField('tsa_password', value)" /> |
60 | 60 | </template> |
61 | 61 | </div> |
62 | 62 | </NcSettingsSection> |
|
0 commit comments