Do not handle dashboard state name from dialog by mobile app
This commit is contained in:
parent
547055bb4e
commit
5ed505d271
@ -235,7 +235,7 @@ export class DefaultStateControllerComponent extends StateControllerComponent im
|
||||
private gotoState(stateId: string, update: boolean, openRightLayout?: boolean) {
|
||||
if (this.dashboardCtrl.dashboardCtx.state !== stateId) {
|
||||
this.dashboardCtrl.openDashboardState(stateId, openRightLayout);
|
||||
if (stateId && this.statesValue[stateId]) {
|
||||
if (this.syncStateWithQueryParam && stateId && this.statesValue[stateId]) {
|
||||
this.mobileService.handleDashboardStateName(this.getStateName(stateId, this.statesValue[stateId]));
|
||||
}
|
||||
if (update) {
|
||||
|
||||
@ -277,7 +277,9 @@ export class EntityStateControllerComponent extends StateControllerComponent imp
|
||||
private gotoState(stateId: string, update: boolean, openRightLayout?: boolean) {
|
||||
const isStateIdChanged = this.dashboardCtrl.dashboardCtx.state !== stateId;
|
||||
this.dashboardCtrl.openDashboardState(stateId, openRightLayout);
|
||||
this.mobileService.handleDashboardStateName(this.getStateName(this.stateObject.length - 1));
|
||||
if (this.syncStateWithQueryParam) {
|
||||
this.mobileService.handleDashboardStateName(this.getStateName(this.stateObject.length - 1));
|
||||
}
|
||||
if (update) {
|
||||
this.updateLocation(isStateIdChanged);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user