From c817601f6024a7d9ef2aa14d9752d04be170f0b2 Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Thu, 5 Oct 2023 19:22:28 -0700 Subject: [PATCH] Fix query string handling for navigation calls. --- src/card-controller/query-string-manager.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/card-controller/query-string-manager.ts b/src/card-controller/query-string-manager.ts index 1dabed43..533352c5 100644 --- a/src/card-controller/query-string-manager.ts +++ b/src/card-controller/query-string-manager.ts @@ -21,15 +21,15 @@ export class QueryStringManager { return !!this._calculateIntent().view; } - public executeNonViewRelated(): void { + public executeNonViewRelated = (): void => { this._executeNonViewRelated(this._calculateIntent()); } - public executeViewRelated(): void { + public executeViewRelated = (): void => { this._executeViewRelated(this._calculateIntent()); } - public executeAll(): void { + public executeAll = (): void => { const intent = this._calculateIntent(); this._executeViewRelated(intent); this._executeNonViewRelated(intent);