Skip to content

Commit

Permalink
Fix query string handling for navigation calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
dermotduffy committed Oct 6, 2023
1 parent 5d2fb22 commit c817601
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/card-controller/query-string-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c817601

Please sign in to comment.