Skip to content

Commit

Permalink
Fix event type (primefaces/primevue#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrichar1 committed Aug 2, 2023
1 parent a0700d2 commit 00f6204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/fields/NumberInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
v-model="fieldValue"
v-bind="properties"
:class="{ 'p-invalid': errorMessage }"
@update:model-value="$emit('update', $event)"
@input="$emit('update', $event)"
/>
<small v-if="errorMessage" class="p-error">{{ errorMessage }}</small>
</div>
Expand Down

0 comments on commit 00f6204

Please sign in to comment.