Skip to content

Commit 0346a67

Browse files
javier-godoypaodb
authored andcommitted
fix: disable internal button focus in ExtendedDatePicker
Close #98
1 parent 75bdcaa commit 0346a67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/resources/META-INF/frontend/fc-date-picker/fc-date-picker-buttons.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ export class FcDatePickerButtons extends ThemableMixin(LitElement) {
2929
return html`
3030
<div id="up">
3131
<button type="button"
32-
aria-label="Increment"
32+
tabindex="-1"
3333
@click=${this._clickUp}></button>
3434
</div>
3535
<div id="down">
3636
<button type="button"
37-
aria-label="Decrement"
37+
tabindex="-1"
3838
@click=${this._clickDown}></button>
3939
</div>
4040
`;

0 commit comments

Comments
 (0)