TSK-1029: corrected formatting in frontend
This commit is contained in:
parent
c9791b01b8
commit
630006de82
|
@ -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
|
||||
|
|
|
@ -89,7 +89,7 @@ export class WorkbasketService {
|
|||
// delete
|
||||
markWorkbasketForDeletion(url: string): Observable<any> {
|
||||
return this.httpClient
|
||||
.delete<any>(url, {observe: 'response'});
|
||||
.delete<any>(url, { observe: 'response' });
|
||||
}
|
||||
|
||||
// GET
|
||||
|
|
Loading…
Reference in New Issue