Skip to content

Commit

Permalink
fix: sink 的 database 和 table 无法填写的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
1534183960 committed Nov 25, 2024
1 parent fcc0e6b commit 1cfd7b8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ const ConfigurationForm = defineComponent({
path='database'
>
<NSelect
tag={props.nodeType === 'sink'}
filterable
loading={state.databaseLoading}
multiple={state.model.sceneMode === 'SPLIT_TABLE'}
Expand All @@ -206,13 +207,14 @@ const ConfigurationForm = defineComponent({
path='tableName'
>
<NSelect
tag={props.nodeType === 'sink'}
filterable
loading={state.tableLoading}
options={state.tableOptions}
v-model={[state.model.tableName, 'value']}
onUpdateValue={onTableChange}
onSearch={onTableSearch}
remote
// remote
virtualScroll
/>
</NFormItem>
Expand Down

0 comments on commit 1cfd7b8

Please sign in to comment.