Skip to content

Commit

Permalink
[DURACOM-190] Fix alignment in vocabulary-treeview
Browse files Browse the repository at this point in the history
(cherry picked from commit feb2b2b)
  • Loading branch information
davide-negretti authored and github-actions[bot] committed Oct 26, 2023
1 parent 00eb24c commit e10a08e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h4 *ngIf="!(loading | async) && dataSource.data.length === 0" class="text-cente
<!-- Leaf node -->
<cdk-tree-node *cdkTreeNodeDef="let node" cdkTreeNodePadding class="d-flex">
<button type="button" class="btn btn-default" cdkTreeNodeToggle>
<span class="fas fa-angle-right invisible" aria-hidden="true"></span>
<span class="fas fa-fw fa-angle-right invisible" aria-hidden="true"></span>
</button>
<label *ngIf="multiSelect" class="d-flex align-items-center m-0 p-0 form-check"
[class.text-success]="node.isSelected"
Expand Down Expand Up @@ -55,7 +55,7 @@ <h4 *ngIf="!(loading | async) && dataSource.data.length === 0" class="text-cente
<button type="button" class="btn btn-default" cdkTreeNodeToggle
[attr.aria-label]="'toggle ' + node.name"
(click)="loadChildren(node)">
<span class="fas {{treeControl.isExpanded(node) ? 'fa-angle-down' : 'fa-angle-right'}}"
<span class="fas fa-fw {{treeControl.isExpanded(node) ? 'fa-angle-down' : 'fa-angle-right'}}"
aria-hidden="true"></span>
</button>

Expand Down

0 comments on commit e10a08e

Please sign in to comment.