Skip to content

Commit 982224f

Browse files
authored
Merge pull request #1800 from TagajN/1783-BUGFIX-CvOverflowMenu
fix: cvoverflowmenu focus
2 parents be7ca0f + f279bf7 commit 982224f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/CvOverflowMenu/CvOverflowMenu.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ function doFocus() {
229229
!(
230230
tryOn.classList.contains('cv-overflow-menu__before-content') ||
231231
tryOn.classList.contains('cv-overflow-menu__after-content') ||
232-
tryOn.tabindex < 0
232+
tryOn.tabindex < 0 ||
233+
tryOn.disabled
233234
)
234235
) {
235236
focusOn = tryOn;

0 commit comments

Comments
 (0)