Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-glombik committed Nov 6, 2024
1 parent afed090 commit bf215cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@if (labelName) {
@if (labelName()) {
<label for="date-input-field" class="form-control-label col">
{{ labelName() }}
</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ export class FormDateTimePickerComponent implements ControlValueAccessor {
labelName = input<string>();
labelTooltip = input<string>();
@Input() value: any;
disabled = input<boolean>();
disabled = input<boolean>(false);
error = input<boolean>();
warning = input<boolean>();
requiredField = input<boolean>(false);
startAt? = input<dayjs.Dayjs>(); // Default selected date. By default, this sets it to the current time without seconds or milliseconds;
min? = input<dayjs.Dayjs>(); // Dates before this date are not selectable.
max? = input<dayjs.Dayjs>(); // Dates after this date are not selectable.
startAt = input<dayjs.Dayjs | undefined>(); // Default selected date. By default, this sets it to the current time without seconds or milliseconds;
min = input<dayjs.Dayjs>(); // Dates before this date are not selectable.
max = input<dayjs.Dayjs>(); // Dates after this date are not selectable.
shouldDisplayTimeZoneWarning = input<boolean>(true); // Displays a warning that the current time zone might differ from the participants'.
valueChange = output<void>();

Expand Down

0 comments on commit bf215cb

Please sign in to comment.