Skip to content

Commit b86a97f

Browse files
Change default debounceDelay to zero
1 parent 59925ce commit b86a97f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# Change Log
22
All notable changes to the "vuetify-drilldown-table" plugin will be documented in this file.
33

4+
## v1.0.0-beta-10
5+
06-29-23
6+
[main] (@webdevnerdstuff)
7+
* Change default debounceDelay to zero
8+
49
## v1.0.0-beta-9
510
06-29-23
611
[main] (@webdevnerdstuff)
7-
* Fix search not working when using top slot (debugging)
12+
* Fix search not working when using top slot... again
813

914
## v1.0.0-beta-8
1015
06-28-23

src/plugin/utils/props.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export const AllProps = {
116116
xs: 12,
117117
xxl: 2,
118118
}),
119-
searchDebounce: 750,
119+
searchDebounce: 0,
120120
searchEvents: () => ({}),
121121
searchMaxWait: 1000,
122122
searchProps: () => ({}),

src/stores/props.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export const usePropsStore = defineStore('props', () => {
138138
type: 'string | undefined',
139139
},
140140
{
141-
default: 750,
141+
default: 0,
142142
desc: 'The delay before the search filters the items',
143143
name: 'search-debounce',
144144
type: 'number | undefined | null',

0 commit comments

Comments
 (0)