Skip to content

Commit

Permalink
fix: Open config with allow api parameter (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
gparant authored Nov 16, 2023
1 parent 08a7b51 commit 360b36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VariablesExtra.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class VariableDescriptor {
*/
export function openConfig(variables?: string[]): void {
const parameters = variables ? "#" + variables.join() : "";
WA.nav.openCoWebSite(defaultAssetsUrl + "/configuration.html" + parameters);
WA.nav.openCoWebSite(defaultAssetsUrl + "/configuration.html" + parameters, true);
}

export async function getVariables(
Expand Down

0 comments on commit 360b36e

Please sign in to comment.