Skip to content

Commit 76e1a39

Browse files
AAwoutersybnd
authored andcommitted
120243: Fix dev compilation issues after upgrade
1 parent d87b375 commit 76e1a39

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/shared/utils/file-size-pipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
PipeTransform,
44
} from '@angular/core';
55
// eslint-disable-next-line import/no-namespace
6-
import * as fileSize from 'filesize';
6+
import fileSize from 'filesize';
77

88
/*
99
* Convert bytes into largest possible unit.

src/app/system-wide-alert/alert-form/system-wide-alert-form.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ export class SystemWideAlertFormComponent implements OnInit {
278278
this.back();
279279
}
280280
} else {
281-
this.notificationsService.error(this.translateService.get(`${messagePrefix}.error`, response.errorMessage));
281+
this.notificationsService.error(this.translateService.get(`${messagePrefix}.error`));
282282
}
283283
});
284284
}

0 commit comments

Comments
 (0)