mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
Replace single quote with double quotes in HTML and use div in place of a element.
This commit is contained in:
parent
0c12367721
commit
49748ee05a
@ -14,7 +14,7 @@
|
|||||||
(contextmenu)="rightClickCipher(c)" href="#" title="{{'viewItem' | i18n}}"
|
(contextmenu)="rightClickCipher(c)" href="#" title="{{'viewItem' | i18n}}"
|
||||||
[ngClass]="{'active': c.id === activeCipherId}" class="flex-list-item">
|
[ngClass]="{'active': c.id === activeCipherId}" class="flex-list-item">
|
||||||
<app-vault-icon [cipher]="c"></app-vault-icon>
|
<app-vault-icon [cipher]="c"></app-vault-icon>
|
||||||
<a class='flex-cipher-list-item'>
|
<div class="flex-cipher-list-item">
|
||||||
<span class="text">
|
<span class="text">
|
||||||
{{c.name}}
|
{{c.name}}
|
||||||
<ng-container *ngIf="c.organizationId">
|
<ng-container *ngIf="c.organizationId">
|
||||||
@ -27,7 +27,7 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
</span>
|
</span>
|
||||||
<span *ngIf="c.subTitle" class="detail">{{c.subTitle}}</span>
|
<span *ngIf="c.subTitle" class="detail">{{c.subTitle}}</span>
|
||||||
</a>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="no-items" *ngIf="!filteredCiphers.length">
|
<div class="no-items" *ngIf="!filteredCiphers.length">
|
||||||
|
Loading…
Reference in New Issue
Block a user