1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

fix vault list items attachment icon placement (#16380)

This commit is contained in:
Jordan Aasen
2025-09-15 12:18:08 -07:00
committed by GitHub
parent 7ce8d06315
commit fc41d4237c

View File

@@ -106,19 +106,21 @@
<app-vault-icon [cipher]="cipher"></app-vault-icon> <app-vault-icon [cipher]="cipher"></app-vault-icon>
</div> </div>
<span data-testid="item-name">{{ cipher.name }}</span> <span data-testid="item-name">{{ cipher.name }}</span>
<i <div slot="default-trailing" class="tw-flex tw-gap-1.5">
*ngIf="cipher.organizationId" <i
slot="default-trailing" *ngIf="cipher.organizationId"
appOrgIcon slot="default-trailing"
[tierType]="cipher.organization!.productTierType" appOrgIcon
[size]="'small'" [tierType]="cipher.organization!.productTierType"
[appA11yTitle]="orgIconTooltip(cipher)" [size]="'small'"
></i> [appA11yTitle]="orgIconTooltip(cipher)"
<i ></i>
*ngIf="CipherViewLikeUtils.hasAttachments(cipher)" <i
class="bwi bwi-paperclip bwi-sm" *ngIf="CipherViewLikeUtils.hasAttachments(cipher)"
[appA11yTitle]="'attachments' | i18n" class="bwi bwi-paperclip bwi-sm"
></i> [appA11yTitle]="'attachments' | i18n"
></i>
</div>
<span slot="secondary">{{ CipherViewLikeUtils.subtitle(cipher) }}</span> <span slot="secondary">{{ CipherViewLikeUtils.subtitle(cipher) }}</span>
</button> </button>