Skip to content

Commit

Permalink
Add debouncing time for data dialog search
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed May 21, 2024
1 parent ae76501 commit ef30cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/SelectionDialog/DataDialogSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const placeholder = computed(() => `search ${props.title.toLowerCase()}`);

<template>
<BInputGroup class="w-100">
<BFormInput v-model="filter" :placeholder="placeholder" />
<BFormInput v-model="filter" :placeholder="placeholder" debounce="500" />
<BInputGroupAppend>
<BButton :disabled="!filter" @click="filter = ''"><FontAwesomeIcon icon="times" /></BButton>
</BInputGroupAppend>
Expand Down

0 comments on commit ef30cca

Please sign in to comment.