Skip to content

Commit e17963c

Browse files
committed
chore: add missed _: parametr
1 parent 8074dd6 commit e17963c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adminforth/spa/src/components/ColumnValueInputWrapper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@update:unmasked="$emit('update:unmasked', column.name)"
2020
@update:inValidity="$emit('update:inValidity', { name: column.name, value: $event })"
2121
@update:emptiness="$emit('update:emptiness', { name: column.name, value: $event })"
22-
@delete="setCurrentValue(column.name, currentValues[column.name].filter((index: any) => index !== arrayItemIndex))"
22+
@delete="setCurrentValue(column.name, currentValues[column.name].filter((_: any, index: any) => index !== arrayItemIndex))"
2323
/>
2424
</div>
2525
<div class="flex items-center">

0 commit comments

Comments
 (0)