We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb71e7 commit 66ef2c5Copy full SHA for 66ef2c5
src/components/form-datepicker/form-datepicker.js
@@ -383,7 +383,10 @@ export const BFormDatepicker = /*#__PURE__*/ Vue.extend({
383
const idMenu = this.safeId('_dialog_')
384
const idWrapper = this.safeId('_b-form-date_')
385
386
- const $button = h(
+ let $button = h('div', { attrs: { 'aria-hidden': 'true' } }, [
387
+ h(isHovered || hasFocus ? BIconCalendarFill : BIconCalendar, { props: { scale: 1.25 } })
388
+ ])
389
+ $button = h(
390
'button',
391
{
392
ref: 'toggle',
0 commit comments