Add cursor pointer

This commit is contained in:
Peter Maquiran
2021-05-04 16:21:24 +01:00
parent 6a3fda279e
commit f091e0c2fd
6 changed files with 19 additions and 15 deletions
@@ -213,9 +213,9 @@ export class EditEventToApproveComponent implements OnInit {
deleteAttachment(attachmentID: string) {
this.attachmentsService.deleteEventAttachmentById(this.InstanceId).subscribe(
this.attachmentsService.deleteEventAttachmentById(attachmentID).subscribe(
res=>{
this.loadedEventAttachments = this.loadedEventAttachments.filter(e=> e.Id.toString() != attachmentID);
this.loadedAttachments = this.loadedAttachments.filter(e=> e.Id.toString() != attachmentID);
})
}