Skip to content

Commit 5b6c174

Browse files
committed
[DURACOM-191] Fix withdrawn-reinstate-modal
1 parent acfcf51 commit 5b6c174

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

src/app/notifications/qa/events/ePerson-data/ePerson-data.component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {
22
AsyncPipe,
3+
NgFor,
34
NgIf,
45
} from '@angular/common';
56
import {
@@ -21,6 +22,7 @@ import {
2122
standalone: true,
2223
imports: [
2324
NgIf,
25+
NgFor,
2426
AsyncPipe,
2527
],
2628
styleUrls: ['./ePerson-data.component.scss'],

src/app/shared/correction-suggestion/withdrawn-reinstate-modal.component.ts renamed to src/app/shared/correction-suggestion/item-withdrawn-reinstate-modal.component.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
import { AsyncPipe } from '@angular/common';
1+
import {
2+
AsyncPipe,
3+
NgIf,
4+
} from '@angular/common';
25
import {
36
Component,
47
EventEmitter,
@@ -18,6 +21,7 @@ import { LoadingComponent } from '../loading/loading.component';
1821
templateUrl: './item-withdrawn-reinstate-modal.component.html',
1922
styleUrls: ['./item-withdrawn-reinstate-modal.component.scss'],
2023
imports: [
24+
NgIf,
2125
TranslateModule,
2226
LoadingComponent,
2327
FormsModule,

src/app/shared/dso-page/dso-withdrawn-reinstate-service/dso-withdrawn-reinstate-modal.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ import { Router } from '@angular/router';
33
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
44
import { TranslateService } from '@ngx-translate/core';
55
import { take } from 'rxjs/operators';
6-
import { Item } from 'src/app/core/shared/item.model';
76

87
import { AuthorizationDataService } from '../../../core/data/feature-authorization/authorization-data.service';
98
import { ItemDataService } from '../../../core/data/item-data.service';
109
import { RemoteData } from '../../../core/data/remote-data';
1110
import { QualityAssuranceEventDataService } from '../../../core/notifications/qa/events/quality-assurance-event-data.service';
1211
import { QualityAssuranceEventObject } from '../../../core/notifications/qa/models/quality-assurance-event.model';
12+
import { Item } from '../../../core/shared/item.model';
1313
import { getFirstCompletedRemoteData } from '../../../core/shared/operators';
14-
import { ItemWithdrawnReinstateModalComponent } from '../../correction-suggestion/withdrawn-reinstate-modal.component';
14+
import { ItemWithdrawnReinstateModalComponent } from '../../correction-suggestion/item-withdrawn-reinstate-modal.component';
1515
import { NotificationsService } from '../../notifications/notifications.service';
1616

1717
export const REQUEST_WITHDRAWN = 'REQUEST/WITHDRAWN';

0 commit comments

Comments
 (0)