Merge branch 'VM/RED-8382' into 'master'
RED-8382 - Missing Restore/Hard Delete button for trashed dossier without owner Closes RED-8382 See merge request redactmanager/red-ui!273
This commit is contained in:
commit
95665993c6
@ -40,14 +40,14 @@
|
||||
<div class="action-buttons">
|
||||
<iqser-circle-button
|
||||
(action)="restore.emit([item])"
|
||||
*ngIf="item.canRestore && item.hasRestoreRights"
|
||||
*ngIf="(item.canRestore && item.hasRestoreRights) || !item.ownerId"
|
||||
[tooltip]="'trash.action.restore' | translate"
|
||||
icon="red:put-back"
|
||||
></iqser-circle-button>
|
||||
|
||||
<iqser-circle-button
|
||||
(action)="hardDelete.emit([item])"
|
||||
*ngIf="item.hasHardDeleteRights"
|
||||
*ngIf="item.hasHardDeleteRights || !item.ownerId"
|
||||
[tooltip]="'trash.action.delete' | translate"
|
||||
icon="iqser:trash"
|
||||
></iqser-circle-button>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user