From ac23afd5548e1dace6cccb4c94fa784b9d75cd54 Mon Sep 17 00:00:00 2001 From: SamVanini Date: Sun, 9 Mar 2025 14:16:23 +0100 Subject: [PATCH 1/2] fix(ui): remove tabindex: -1 from remove link button #15675 --- ui/src/components/editor/editor-utils.js | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/src/components/editor/editor-utils.js b/ui/src/components/editor/editor-utils.js index 137d0a33bc8..163bdb82e25 100644 --- a/ui/src/components/editor/editor-utils.js +++ b/ui/src/components/editor/editor-utils.js @@ -266,7 +266,6 @@ export function getLinkEditor (eVm) { getGroup([ h(QBtn, { key: 'qedt_btm_rem', - tabindex: -1, ...eVm.buttonProps.value, label: eVm.$q.lang.label.remove, noCaps: true, From 65f98e9bf6253b9bd9b35c8526057219d637b598 Mon Sep 17 00:00:00 2001 From: SamVanini Date: Sun, 9 Mar 2025 15:14:31 +0100 Subject: [PATCH 2/2] fix(ui): add aria label to editor buttons #15675 #13275 --- ui/src/components/editor/editor-utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/components/editor/editor-utils.js b/ui/src/components/editor/editor-utils.js index 163bdb82e25..8e81c2db36e 100644 --- a/ui/src/components/editor/editor-utils.js +++ b/ui/src/components/editor/editor-utils.js @@ -51,6 +51,7 @@ function getBtn (eVm, btn, clickHandler, active = false) { color: toggled ? btn.toggleColor || eVm.props.toolbarToggleColor : btn.color || eVm.props.toolbarColor, textColor: toggled && !eVm.props.toolbarPush ? null : btn.textColor || eVm.props.toolbarTextColor, label: btn.label, + ariaLabel: btn.label == null ? btn.tip : void 0, disable: btn.disable ? (typeof btn.disable === 'function' ? btn.disable(eVm) : true) : false, size: 'sm', onClick (e) {