|
@@ -1,5 +1,4 @@
|
1
|
1
|
import { Component, AfterViewInit, Renderer, ElementRef } from '@angular/core';
|
2
|
|
-import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
3
|
2
|
import { Router } from '@angular/router';
|
4
|
3
|
import { JhiEventManager } from 'ng-jhipster';
|
5
|
4
|
|
|
@@ -23,9 +22,8 @@ export class JhiLoginModalComponent implements AfterViewInit {
|
23
|
22
|
private stateStorageService: StateStorageService,
|
24
|
23
|
private elementRef: ElementRef,
|
25
|
24
|
private renderer: Renderer,
|
26
|
|
- private router: Router
|
27
|
|
- ) // public activeModal: NgbActiveModal
|
28
|
|
- {
|
|
25
|
+ private router: Router // public activeModal: NgbActiveModal
|
|
26
|
+ ) {
|
29
|
27
|
this.credentials = {};
|
30
|
28
|
}
|
31
|
29
|
|