We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9713a34 commit 1ca7aafCopy full SHA for 1ca7aaf
src/datepicker/datepicker.component.ts
@@ -323,9 +323,11 @@ export class DatePicker implements
323
}
324
325
ngAfterViewInit() {
326
- this.input.input.nativeElement.value = this._value[0] ?? "";
327
- if (this.range) {
328
- this.rangeInput.input.nativeElement.value = this._value[1] ?? "";
+ if (!this.skeleton) {
+ this.input.input.nativeElement.value = this._value[0] ?? "";
+ if (this.range) {
329
+ this.rangeInput.input.nativeElement.value = this._value[1] ?? "";
330
+ }
331
332
setTimeout(() => {
333
this.addInputListeners();
0 commit comments