Commits
Giuseppe Digilio authored 6bbc7f96c27
1 1 | import { RemoteData } from '../../../core/data/remote-data'; |
2 2 | import { NoContent } from '../../../core/shared/NoContent.model'; |
3 3 | import { FeedbackDataService } from '../../../core/feedback/feedback-data.service'; |
4 4 | import { Component, Inject, OnInit } from '@angular/core'; |
5 5 | import { RouteService } from '../../../core/services/route.service'; |
6 6 | import { FormBuilder, Validators } from '@angular/forms'; |
7 7 | import { NotificationsService } from '../../../shared/notifications/notifications.service'; |
8 8 | import { TranslateService } from '@ngx-translate/core'; |
9 9 | import { AuthService } from '../../../core/auth/auth.service'; |
10 10 | import { EPerson } from '../../../core/eperson/models/eperson.model'; |
11 11 | import { getFirstCompletedRemoteData } from '../../../core/shared/operators'; |
12 - | import { Router, UrlSegmentGroup } from '@angular/router'; |
12 + | import { Router } from '@angular/router'; |
13 13 | import { getHomePageRoute } from '../../../app-routing-paths'; |
14 14 | import { take } from 'rxjs/operators'; |
15 15 | import { NativeWindowRef, NativeWindowService } from '../../../core/services/window.service'; |
16 16 | import { URLCombiner } from '../../../core/url-combiner/url-combiner'; |
17 17 | |
18 18 | @Component({ |
19 19 | selector: 'ds-feedback-form', |
20 20 | templateUrl: './feedback-form.component.html', |
21 21 | styleUrls: ['./feedback-form.component.scss'] |
22 22 | }) |