Skip to content

Commit a917100

Browse files
fix(IdDocsValidation): replace Vue 2 @update:value with @update:modelValue on NcActionInput
NcActionInput changed its emit from `update:value` to `update:modelValue` in @nextcloud/vue v9 (Vue 3). Replace @update:value with @update:modelValue on the owner filter NcActionInput so the onFilterChange callback is triggered when the user types in the filter field. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 0056695 commit a917100

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/views/Documents/IdDocsValidation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</template>
1313
<NcActionInput v-model="filters.owner"
1414
:label="t('libresign', 'Owner')"
15-
@update:value="onFilterChange">
15+
@update:modelValue="onFilterChange">
1616
<template #icon>
1717
<NcIconSvgWrapper :path="mdiAccount" :size="20" />
1818
</template>

0 commit comments

Comments
 (0)