diff --git a/web/src/app/administration/workbasket/details/information/workbasket-information.component.ts b/web/src/app/administration/workbasket/details/information/workbasket-information.component.ts index c1fab02d7..f5391163f 100644 --- a/web/src/app/administration/workbasket/details/information/workbasket-information.component.ts +++ b/web/src/app/administration/workbasket/details/information/workbasket-information.component.ts @@ -285,7 +285,9 @@ implements OnInit, OnChanges, OnDestroy { // TODO: message changed this.generalModalService.triggerMessage( new MessageModal('Workbasket was marked for deletion.', - `The Workbasket ${this.workbasket.workbasketId} still contains completed tasks and could not be deleted. Instead is was marked for deletion and will be deleted automatically as soon as the completed tasks are deleted from the database.`) + `The Workbasket ${this.workbasket.workbasketId} still contains completed tasks and could not be deleted.` + + 'Instead is was marked for deletion and will be deleted automatically ' + + 'as soon as the completed tasks are deleted from the database.') ); } else { // new Key ALERT_TYPES.SUCCESS_ALERT_12 diff --git a/web/src/app/shared/services/workbasket/workbasket.service.ts b/web/src/app/shared/services/workbasket/workbasket.service.ts index b1f90eafd..511847924 100644 --- a/web/src/app/shared/services/workbasket/workbasket.service.ts +++ b/web/src/app/shared/services/workbasket/workbasket.service.ts @@ -89,7 +89,7 @@ export class WorkbasketService { // delete markWorkbasketForDeletion(url: string): Observable { return this.httpClient - .delete(url, {observe: 'response'}); + .delete(url, { observe: 'response' }); } // GET