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 a3e3d17 commit a4a1544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Components/Form/TextListInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function handleNewLine() {
emit('update:modelValue', newModelValue)
}
function handleDeleteLine(index) {
function handleDeleteLine(index: number) {
const newModelValue = [...props.modelValue];
newModelValue.splice(index, 1);
Expand Down

0 comments on commit a4a1544

Please sign in to comment.