88248: #346: Withdrawn item tombstone page

This commit is contained in:
Yana De Pauw
2022-03-14 16:33:10 +01:00
parent 9fc7b57157
commit b21f76456d
7 changed files with 178 additions and 30 deletions

View File

@@ -15,6 +15,7 @@ import { fadeInOut } from '../../shared/animations/fade';
import { hasValue } from '../../shared/empty.util';
import { AuthService } from '../../core/auth/auth.service';
import { Location } from '@angular/common';
import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service';
/**
@@ -46,8 +47,9 @@ export class FullItemPageComponent extends ItemPageComponent implements OnInit,
router: Router,
items: ItemDataService,
authService: AuthService,
authorizationService: AuthorizationDataService,
private _location: Location) {
super(route, router, items, authService);
super(route, router, items, authService, authorizationService);
}
/*** AoT inheritance fix, will hopefully be resolved in the near future **/