Skip to content

Commit

Permalink
chore: add "0" as default value for debounce delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Dekker committed Nov 15, 2023
1 parent 0fe4607 commit 4658991
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/prefabs/structures/TextInput/options/advanced.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { number, variable } from '@betty-blocks/component-sdk';

export const advanced = {
debounceDelay: number('Interaction (change) delay in milliseconds'),
debounceDelay: number('Interaction (change) delay in milliseconds', {
value: '0',
}),
dataComponentAttribute: variable('Test attribute', {
value: [],
}),
Expand Down

0 comments on commit 4658991

Please sign in to comment.