Skip to content

Commit

Permalink
allow a minimum of 0 for config option next_days as a value (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
idaho authored Oct 7, 2024
1 parent 2cc3283 commit 35a3eb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cards/trash-card/formSchemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const getSchema = (customLocalize: LocalizeFunc, currentValues: TrashCardConfig,
label: customLocalize(`editor.card.generic.next_days`),
selector: {
number: {
min: 1,
min: 0,
max: 365,
step: 1,
mode: 'box'
Expand Down

0 comments on commit 35a3eb0

Please sign in to comment.