|
21 | 21 | :loading="loading" |
22 | 22 | :error="!!errors.tsa_url" |
23 | 23 | :helper-text="getHelperText('tsa_url')" |
24 | | - @update:modelValue="(value) => updateField('tsa_url', value)" /> |
| 24 | + @update:modelValue="(value) => updateField('tsa_url', String(value))" /> |
25 | 25 |
|
26 | 26 | <NcTextField :modelValue="tsa_policy_oid" |
27 | 27 | :label="t('libresign', 'TSA Policy OID')" |
|
30 | 30 | :loading="loading" |
31 | 31 | :error="!!errors.tsa_policy_oid" |
32 | 32 | :helper-text="getHelperText('tsa_policy_oid')" |
33 | | - @update:modelValue="(value) => updateField('tsa_policy_oid', value)" /> |
| 33 | + @update:modelValue="(value) => updateField('tsa_policy_oid', String(value))" /> |
34 | 34 |
|
35 | 35 | <NcSelect v-model="selectedAuthType" |
36 | 36 | :options="authOptions" |
|
47 | 47 | :loading="loading" |
48 | 48 | :error="!!errors.tsa_username" |
49 | 49 | :helper-text="getHelperText('tsa_username')" |
50 | | - @update:modelValue="(value) => updateField('tsa_username', value)" /> |
| 50 | + @update:modelValue="(value) => updateField('tsa_username', String(value))" /> |
51 | 51 |
|
52 | 52 | <NcPasswordField :modelValue="tsa_password" |
53 | 53 | :label="t('libresign', 'Password')" |
|
56 | 56 | :loading="loading" |
57 | 57 | :error="!!errors.tsa_password" |
58 | 58 | :helper-text="getHelperText('tsa_password')" |
59 | | - @update:modelValue="(value) => updateField('tsa_password', value)" /> |
| 59 | + @update:modelValue="(value) => updateField('tsa_password', String(value))" /> |
60 | 60 | </template> |
61 | 61 | </div> |
62 | 62 | </NcSettingsSection> |
|
0 commit comments