set route with router.navigate
This commit is contained in:
parent
ce659c9a51
commit
39005ad759
2
jslib
2
jslib
|
@ -1 +1 @@
|
||||||
Subproject commit 739d308498ab68df3e37772265733c81b27f2cc2
|
Subproject commit 5609fecbcee6d0608ea28985c31688511e735a59
|
|
@ -1,6 +1,5 @@
|
||||||
import { remote } from 'electron';
|
import { remote } from 'electron';
|
||||||
|
|
||||||
import { Location } from '@angular/common';
|
|
||||||
import {
|
import {
|
||||||
ChangeDetectorRef,
|
ChangeDetectorRef,
|
||||||
Component,
|
Component,
|
||||||
|
@ -75,7 +74,7 @@ export class VaultComponent implements OnInit, OnDestroy {
|
||||||
|
|
||||||
private modal: ModalComponent = null;
|
private modal: ModalComponent = null;
|
||||||
|
|
||||||
constructor(private route: ActivatedRoute, private router: Router, private location: Location,
|
constructor(private route: ActivatedRoute, private router: Router,
|
||||||
private componentFactoryResolver: ComponentFactoryResolver, private i18nService: I18nService,
|
private componentFactoryResolver: ComponentFactoryResolver, private i18nService: I18nService,
|
||||||
private broadcasterService: BroadcasterService, private changeDetectorRef: ChangeDetectorRef,
|
private broadcasterService: BroadcasterService, private changeDetectorRef: ChangeDetectorRef,
|
||||||
private ngZone: NgZone, private syncService: SyncService, private analytics: Angulartics2,
|
private ngZone: NgZone, private syncService: SyncService, private analytics: Angulartics2,
|
||||||
|
@ -570,8 +569,11 @@ export class VaultComponent implements OnInit, OnDestroy {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const url = this.router.createUrlTree(['vault'], { queryParams: queryParams }).toString();
|
this.router.navigate([], {
|
||||||
this.location.go(url);
|
relativeTo: this.route,
|
||||||
|
queryParams: queryParams,
|
||||||
|
replaceUrl: true,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private addCipherWithChangeDetection(type: CipherType = null) {
|
private addCipherWithChangeDetection(type: CipherType = null) {
|
||||||
|
|
Loading…
Reference in New Issue