mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-01 15:37:32 +08:00
Update DataDialogSearch component in SelectionDialog
- Change v-model to use :value and @input for filter binding - Ensure proper data flow for search functionality
This commit is contained in:
committed by
Alireza Heidari
parent
34ff50700b
commit
f616fa5902
@@ -261,7 +261,11 @@ defineExpose({
|
||||
:loading="props.isBusy"
|
||||
:show-advanced.sync="showAdvancedSearch" />
|
||||
|
||||
<DataDialogSearch v-else v-model="filter" :title="props.searchTitle || props.title" />
|
||||
<DataDialogSearch
|
||||
v-else
|
||||
:value="filter"
|
||||
:title="props.searchTitle || props.title"
|
||||
@input="filter = $event" />
|
||||
</div>
|
||||
</template>
|
||||
<slot name="helper" />
|
||||
|
||||
Reference in New Issue
Block a user