Fix query string handling for navigation calls.

This commit is contained in:
Dermot Duffy
2023-10-05 19:22:28 -07:00
parent 5d2fb22ae6
commit c817601f60
+3 -3
View File
@@ -21,15 +21,15 @@ export class QueryStringManager {
return !!this._calculateIntent().view; return !!this._calculateIntent().view;
} }
public executeNonViewRelated(): void { public executeNonViewRelated = (): void => {
this._executeNonViewRelated(this._calculateIntent()); this._executeNonViewRelated(this._calculateIntent());
} }
public executeViewRelated(): void { public executeViewRelated = (): void => {
this._executeViewRelated(this._calculateIntent()); this._executeViewRelated(this._calculateIntent());
} }
public executeAll(): void { public executeAll = (): void => {
const intent = this._calculateIntent(); const intent = this._calculateIntent();
this._executeViewRelated(intent); this._executeViewRelated(intent);
this._executeNonViewRelated(intent); this._executeNonViewRelated(intent);