We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ff157 commit 1ab6d07Copy full SHA for 1ab6d07
packages/components/src/components/date-picker/date-picker.tsx
@@ -226,9 +226,12 @@ export class DatePicker {
226
*/
227
@Watch('value')
228
onValueChange() {
229
- this.hasValue = this.value != null && this.value !== '';
230
- // @ts-ignore
231
- this.duetInput.querySelector('.duet-date__input').value = this.value;
+ this.hasValue = this.value !== null && this.value !== '';
+ const input = this.duetInput.querySelector('.duet-date__input');
+ if (input) {
232
+ // @ts-ignore
233
+ input.value = this.value;
234
+ }
235
}
236
237
/**
0 commit comments