1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

fix null ref of cipher.isDeleted (#1275)

This commit is contained in:
Kyle Spearrin
2020-06-01 10:30:39 -04:00
committed by GitHub
parent 88129f9135
commit bd6a5ceccd

View File

@@ -5,7 +5,7 @@
<div class="center"> <div class="center">
<span class="title">{{'viewItem' | i18n}}</span> <span class="title">{{'viewItem' | i18n}}</span>
</div> </div>
<div class="right"> <div class="right" *ngIf="cipher">
<button type="button" appBlurClick (click)="edit()" *ngIf="!cipher.isDeleted">{{'edit' | i18n}}</button> <button type="button" appBlurClick (click)="edit()" *ngIf="!cipher.isDeleted">{{'edit' | i18n}}</button>
</div> </div>
</header> </header>