Skip to content

Commit

Permalink
chore: fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov committed Dec 9, 2024
1 parent 7c7ce9e commit a032978
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class TuiInputDateRangeComponent
private readonly mobileCalendar = inject(TUI_MOBILE_CALENDAR, {optional: true});
private readonly options = inject(TUI_INPUT_DATE_OPTIONS);
private readonly textfieldSize = inject(TUI_TEXTFIELD_SIZE);
private readonly nativeValue = signal(this.nativeFocusableElement?.value || '');
private readonly nativeValue = signal('');

protected readonly dateTexts$ = inject(TUI_DATE_TEXTS);
protected override readonly valueTransformer = inject(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class TuiInputDateTimeComponent
private readonly textfieldSize = inject(TUI_TEXTFIELD_SIZE);
private month: TuiMonth | null = null;
private readonly timeMode$ = new BehaviorSubject<TuiTimeMode>('HH:MM');
private readonly nativeValue = signal(this.nativeFocusableElement?.value || '');
private readonly nativeValue = signal('');

protected readonly timeTexts$ = inject(TUI_TIME_TEXTS);
protected readonly dateTexts$ = inject(TUI_DATE_TEXTS);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class TuiInputDateComponent
private readonly textfieldSize = inject(TUI_TEXTFIELD_SIZE);
private readonly mobileCalendar = inject(TUI_MOBILE_CALENDAR, {optional: true});
private month: TuiMonth | null = null;
private readonly nativeValue = signal(this.nativeFocusableElement?.value || '');
private readonly nativeValue = signal('');

@Input()
public min: TuiDay | null = this.options.min;
Expand Down

0 comments on commit a032978

Please sign in to comment.