Skip to content

Commit

Permalink
refactor: remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
caro3801 committed Jan 30, 2025
1 parent 539a9e3 commit f21d20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Form/FormControl/FormControlPath.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const { core } = useCore()
const selectedPaths = ref([])
const sourcePath = computed(() => props.path ?? core.getDefaultDataDir())
const display = computed(() => modelValue.value ?? sourcePath.value)
watch(toRef(props, 'projects'), (value) => {
watch(toRef(props, 'projects'), () => {
selectedPaths.value = []
})
Expand Down

0 comments on commit f21d20b

Please sign in to comment.