fix fido2 cipher row component subname not having proper layout/styling (#11389)

This commit is contained in:
Jonathan Prusik 2024-10-03 13:28:47 -04:00 committed by GitHub
parent 3f8f5bc1fa
commit 386bcaeabd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,9 @@
class="bwi bwi-collection text-muted"
></i>
</span>
<span class="detail" *ngIf="getSubName(cipher)">{{ getSubName(cipher) }}</span>
<span *ngIf="cipher.subTitle" slot="secondary">{{ cipher.subTitle }}</span>
<ng-container slot="secondary">
<div *ngIf="getSubName(cipher)">{{ getSubName(cipher) }}</div>
<div *ngIf="cipher.subTitle">{{ cipher.subTitle }}</div>
</ng-container>
</button>
</bit-item>