Skip to content

Commit 1ab6d07

Browse files
committed
fix: check for querySelector value added
1 parent e0ff157 commit 1ab6d07

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/components/src/components/date-picker/date-picker.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,12 @@ export class DatePicker {
226226
*/
227227
@Watch('value')
228228
onValueChange() {
229-
this.hasValue = this.value != null && this.value !== '';
230-
// @ts-ignore
231-
this.duetInput.querySelector('.duet-date__input').value = this.value;
229+
this.hasValue = this.value !== null && this.value !== '';
230+
const input = this.duetInput.querySelector('.duet-date__input');
231+
if (input) {
232+
// @ts-ignore
233+
input.value = this.value;
234+
}
232235
}
233236

234237
/**

0 commit comments

Comments
 (0)