Skip to content

Commit

Permalink
Merge pull request #1281 from dermotduffy/query-string-functions
Browse files Browse the repository at this point in the history
Fix query string handling for navigation calls
  • Loading branch information
dermotduffy authored Oct 6, 2023
2 parents 5d2fb22 + c817601 commit be74a04
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 be74a04

Please sign in to comment.