Skip to content

Commit 1a0881f

Browse files
fix(IdentifySigner): use update:modelValue instead of update:value
In @nextcloud/vue v9.0.0 the 'value' prop and 'update:value' event were renamed to 'modelValue' and 'update:modelValue' respectively for NcTextField and related input components. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent d9f87d9 commit 1a0881f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Request/IdentifySigner.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
:required="true"
3030
:error="nameHaveError"
3131
:helper-text="nameHelperText"
32-
@update:value="onNameChange" />
32+
@update:modelValue="onNameChange" />
3333

3434
<div v-if="signerSelected && showCustomMessage && !disabled" class="description-wrapper">
3535
<NcCheckboxRadioSwitch v-model="enableCustomMessage"

0 commit comments

Comments
 (0)