Skip to content

Commit

Permalink
Merge pull request #434 from Vastra-Gotalandsregionen/fix/309-unable-…
Browse files Browse the repository at this point in the history
…to-tab-filter-tags

Fixa tabb-ordningen på filter-tags
  • Loading branch information
herrklaseen authored Aug 14, 2020
2 parents 6e0b4a4 + f4aae29 commit 533fecc
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ export class FilterTagGroupComponent implements AfterContentInit, OnDestroy {
}

setFilterTagTabFocusability() {
this.filterTags.forEach((x, i) => {
const focusable = i ? false : true;
x.makeTabFocusable(focusable);
this.filterTags.forEach((x) => {
x.makeTabFocusable(true);
});
}

Expand Down

0 comments on commit 533fecc

Please sign in to comment.