diff --git a/CHANGELOG.md b/CHANGELOG.md index aa7f25b..59445f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.0.1] - April 23, 2021 + +Bug fixes + ## [1.1.0] - April 23, 2021 Better digital accessibility. diff --git a/src/JSPanel.ts b/src/JSPanel.ts index 40878f4..255afb6 100644 --- a/src/JSPanel.ts +++ b/src/JSPanel.ts @@ -267,7 +267,6 @@ class JSPanel { } else { const button = this._createEl("button"); button.setAttribute("aria-label", item.title); - button.setAttribute("tabindex", "0"); if ((item.icon && !item.fontawesome_icon) || (item.icon && item.fontawesome_icon)) { const icon = this._createEl("img", { attributes: [["src", item.icon]] });