Skip to content
This repository was archived by the owner on Apr 17, 2022. It is now read-only.

Commit 71385b1

Browse files
committed
style: Type correction
1 parent 58ab636 commit 71385b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Vue3DatePicker/components/DatepickerInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<div v-if="!$slots.trigger && !$slots['dp-input'] && !inline" class="dp__input_wrap">
2020
<input
2121
ref="inputRef"
22-
:id="uid ? `dp-input-${uid}` : null"
22+
:id="uid ? `dp-input-${uid}` : undefined"
2323
:class="inputClass"
2424
:placeholder="placeholder"
2525
:disabled="disabled"

src/Vue3DatePicker/components/DatepickerMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div
3-
:id="uid ? `dp-menu-${uid}` : null"
3+
:id="uid ? `dp-menu-${uid}` : undefined"
44
tabindex="0"
55
ref="dpMenuRef"
66
role="dialog"

0 commit comments

Comments
 (0)