Skip to content

Commit 548f773

Browse files
authored
chore(b-form-datepicker): fix typecheck during tests
1 parent 378e76f commit 548f773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/form-datepicker/form-datepicker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export const BFormDatepicker = /*#__PURE__*/ Vue.extend({
293293
return (this.localLocale || '').replace(/-u-.*$/i, '') || null
294294
},
295295
computedResetValue() {
296-
return parseYMD(this.resetValue) || ''
296+
return formatYMD(this.resetValue) || ''
297297
}
298298
},
299299
watch: {

0 commit comments

Comments
 (0)