refactor(web/input): set date to current if default is set to true

This commit is contained in:
Luke
2023-01-14 13:44:03 +01:00
parent 5245e27a75
commit ec57d03791
3 changed files with 7 additions and 4 deletions

View File

@@ -71,7 +71,7 @@ export interface IColorInput {
export interface IDateInput {
type: 'date';
label: string;
default?: string;
default?: string | true;
disabled?: boolean;
description?: string;
required?: boolean;