Skip to content

Commit

Permalink
fix: switch data source type not to update
Browse files Browse the repository at this point in the history
  • Loading branch information
SonyLeo committed Feb 10, 2025
1 parent 7761307 commit 3fd2381
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/plugins/datasource/src/DataSourceType.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ export default {
const dataSourceType = ref(props.modelValue)
watch(
() => props.modelValue,
(newVal) => {
dataSourceType.value = newVal
}
)
watch(
() => dataSourceType.value,
(newVal) => {
Expand Down

0 comments on commit 3fd2381

Please sign in to comment.