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:
committed by
addison
parent
06227f27ab
commit
d886a056fa
@@ -31,7 +31,7 @@
|
|||||||
<button
|
<button
|
||||||
class="toggle-button"
|
class="toggle-button"
|
||||||
*ngIf="c.children.length"
|
*ngIf="c.children.length"
|
||||||
(click)="collapse(c.node)"
|
(click)="toggleCollapse(c.node)"
|
||||||
title="{{ 'toggleCollapse' | i18n }}"
|
title="{{ 'toggleCollapse' | i18n }}"
|
||||||
[attr.aria-expanded]="!isCollapsed(c.node)"
|
[attr.aria-expanded]="!isCollapsed(c.node)"
|
||||||
[attr.aria-controls]="c.node.name + '_children'"
|
[attr.aria-controls]="c.node.name + '_children'"
|
||||||
|
|||||||
Reference in New Issue
Block a user