Skip to content

Commit

Permalink
fix(input-date): fix prop types to prevent vue warning (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
NozomuIkuta committed Nov 7, 2023
1 parent 3ab347a commit 1dc9233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/SInputDate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function emitBlur() {
autocomplete="off"
:value="inputValue"
:disabled="disabled"
v-on="disabled || inputEvents"
v-on="disabled ? {} : inputEvents"
@blur="emitBlur"
>
</DatePicker>
Expand Down

0 comments on commit 1dc9233

Please sign in to comment.