Skip to content

Commit

Permalink
fix(input-ymd): default value is missing on size prop (#156) (#166)
Browse files Browse the repository at this point in the history
fix #156
  • Loading branch information
brc-dd committed Oct 21, 2022
1 parent 49ff573 commit 97ba580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/SInputYMD.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function createRequiredTouched(): boolean[] {
<template>
<SInputBase
class="SInputYMD"
:class="[size, { disabled }]"
:class="[size ?? 'small', { disabled }]"
:label="label"
:note="note"
:help="help"
Expand Down

0 comments on commit 97ba580

Please sign in to comment.