1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-28 15:23:53 +00:00

fixed misalignment of suspended org icon (#18502)

This commit is contained in:
Leslie Xiong
2026-01-22 17:08:46 -05:00
committed by GitHub
parent daacff888d
commit a28193f880

View File

@@ -17,16 +17,16 @@
[text]="organization.node.name"
[appA11yTitle]="organization.node.name"
(click)="applyFilter($event, organization)"
/>
@if (!organization.node.enabled) {
<span class="tw-ml-auto">
>
@if (!organization.node.enabled) {
<i
slot="end"
class="bwi bwi-fw bwi-exclamation-triangle text-danger mr-auto"
[attr.aria-label]="'organizationIsDisabled' | i18n"
[appA11yTitle]="'organizationIsDisabled' | i18n"
></i>
</span>
}
}
</bit-nav-item>
}
</bit-nav-group>
}