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 ec0388b commit 646503bCopy full SHA for 646503b
source/nodejs/adaptivecards/src/card-elements.ts
@@ -5668,8 +5668,8 @@ class ActionCollection {
5668
let afterSelectedAction = false;
5669
5670
for (const renderedAction of this._renderedActions) {
5671
- // Remove actions after selected action from tabOrder, to skip focus directly to expanded card
5672
- if (afterSelectedAction) {
+ // Remove actions after selected action from tabOrder if the actions are oriented horizontally, to skip focus directly to expanded card
+ if (this._owner.hostConfig.actions.actionsOrientation == Enums.Orientation.Horizontal && afterSelectedAction) {
5673
renderedAction.isFocusable = false;
5674
}
5675
0 commit comments