fixed minor wrap issue

This commit is contained in:
Timo Bejan 2020-11-05 13:42:49 +02:00
parent 5d14dfeeb8
commit bea8b6b289
3 changed files with 1 additions and 3 deletions

View File

@ -1,6 +1,5 @@
@import '../../../assets/styles/red-variables';
.flex-row {
flex-wrap: wrap;
gap: 12px;
}

View File

@ -17,7 +17,6 @@ export class FileActionService {
private _appStateService: AppStateService
) {}
// TODO refactor callback to observable or promise
public assignProjectReviewer(file?: FileStatus, callback?: Function) {
if (this._appStateService.isActiveProjectOwnerAndManager) {
this._dialogService.openAssignFileReviewerDialog(

View File

@ -209,7 +209,7 @@ export class ProjectOverviewScreenComponent implements OnInit, OnDestroy {
public assignReviewer($event: MouseEvent, file: FileStatusWrapper) {
$event.stopPropagation();
this._fileActionService.assignProjectReviewer(file, () => this.reloadProjects());
this._fileActionService.assignProjectReviewer(file, () => this._calculateData());
}
public reanalyseFile($event: MouseEvent, fileStatusWrapper: FileStatusWrapper) {