Merge pull request #1281 from dermotduffy/query-string-functions

Fix query string handling for navigation calls
This commit is contained in:
Dermot Duffy
2023-10-05 19:29:27 -07:00
committed by GitHub
+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);