1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

Fix expanding/collapsing of nested collections (#1722)

This commit is contained in:
Daniel James Smith
2022-06-01 14:46:48 +02:00
committed by addison
parent 06227f27ab
commit d886a056fa

View File

@@ -31,7 +31,7 @@
<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'"