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:
Alireza Heidari
2026-03-23 15:11:16 +01:00
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" />