Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
arthaud-proust committed Oct 20, 2023
1 parent 89a777d commit 2d7e25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Components/Form/NumberInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const value = computed({
return props.modelValue
},
set(value) {
emit('update:modelValue', Number.parseFloat(value))
emit('update:modelValue', value)
}
})
Expand Down

0 comments on commit 2d7e25f

Please sign in to comment.