Skip to content

Commit

Permalink
fix input label watching for matrix pins
Browse files Browse the repository at this point in the history
  • Loading branch information
JanLunge committed Oct 4, 2024
1 parent a61a73b commit c302f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/components/ui/InputLabel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const localValue = ref('')
onMounted(() => {
localValue.value = props.modelValue
})
watch(props.modelValue, () => {
watch(() => props.modelValue, () => {
localValue.value = props.modelValue
})
const changed = () => {
Expand Down

0 comments on commit c302f93

Please sign in to comment.