|
|
|
@ -32,19 +32,26 @@ |
|
|
|
</small> |
|
|
|
</small> |
|
|
|
</h1> |
|
|
|
</h1> |
|
|
|
<div class="ml-auto d-flex"> |
|
|
|
<div class="ml-auto d-flex"> |
|
|
|
<app-vault-bulk-actions [ciphersComponent]="ciphersComponent" [deleted]="deleted"> |
|
|
|
<app-vault-bulk-actions |
|
|
|
|
|
|
|
[ciphersComponent]="ciphersComponent" |
|
|
|
|
|
|
|
[deleted]="activeFilter.status === 'trash'" |
|
|
|
|
|
|
|
> |
|
|
|
</app-vault-bulk-actions> |
|
|
|
</app-vault-bulk-actions> |
|
|
|
<button |
|
|
|
<button |
|
|
|
type="button" |
|
|
|
type="button" |
|
|
|
class="btn btn-outline-primary btn-sm" |
|
|
|
class="btn btn-outline-primary btn-sm" |
|
|
|
(click)="addCipher()" |
|
|
|
(click)="addCipher()" |
|
|
|
*ngIf="!deleted" |
|
|
|
*ngIf="activeFilter.status !== 'trash'" |
|
|
|
> |
|
|
|
> |
|
|
|
<i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i>{{ "addItem" | i18n }} |
|
|
|
<i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i>{{ "addItem" | i18n }} |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<app-callout type="warning" *ngIf="deleted" icon="bwi-exclamation-triangle"> |
|
|
|
<app-callout |
|
|
|
|
|
|
|
type="warning" |
|
|
|
|
|
|
|
*ngIf="activeFilter.status === 'trash'" |
|
|
|
|
|
|
|
icon="bwi-exclamation-triangle" |
|
|
|
|
|
|
|
> |
|
|
|
{{ trashCleanupWarning }} |
|
|
|
{{ trashCleanupWarning }} |
|
|
|
</app-callout> |
|
|
|
</app-callout> |
|
|
|
<app-vault-ciphers |
|
|
|
<app-vault-ciphers |
|
|
|
|