fixed minor wrap issue
This commit is contained in:
parent
5d14dfeeb8
commit
bea8b6b289
@ -1,6 +1,5 @@
|
||||
@import '../../../assets/styles/red-variables';
|
||||
|
||||
.flex-row {
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
@ -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(
|
||||
|
||||
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user