Skip to content

Commit

Permalink
Merge branch 'feature/wcag_filtertag'
Browse files Browse the repository at this point in the history
  • Loading branch information
aljlo2 committed Nov 14, 2024
2 parents db7fe0c + 1272448 commit 8d4ca8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion projects/komponentkartan/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vgr-komponentkartan",
"version": "12.0.3",
"version": "12.0.4-beta",
"peerDependencies": {
"@angular/cdk": ">=17.0.0",
"@angular/common": ">=17.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<div class="filter-tag-group">
<ng-content></ng-content>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ export class FilterTagGroupComponent implements AfterContentInit, OnDestroy {

setFilterTagTabFocusability() {
this.filterTags.forEach((x) => {
x.makeTabFocusable(true);
});
x.makeTabFocusable(false);
});
this.filterTags.get(0).makeTabFocusable(true);
}

setFilterTagFocus() {
Expand Down

0 comments on commit 8d4ca8e

Please sign in to comment.