Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Fix expanding/collapsing of nested collections (#1722)
Browse files Browse the repository at this point in the history
  • Loading branch information
djsmith85 authored and addisonbeck committed Jun 7, 2022
1 parent 06227f2 commit d886a05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h3 class="filter-title">&nbsp;{{ collectionsGrouping.name | i18n }}</h3>
<button
class="toggle-button"
*ngIf="c.children.length"
(click)="collapse(c.node)"
(click)="toggleCollapse(c.node)"
title="{{ 'toggleCollapse' | i18n }}"
[attr.aria-expanded]="!isCollapsed(c.node)"
[attr.aria-controls]="c.node.name + '_children'"
Expand Down

0 comments on commit d886a05

Please sign in to comment.