web: roll back update to sonar

Bloody dependabot.  We're not compatible with ESLint 9 yet, darnit, and yet
dependabot keeps pushing upgrades on us.
This commit is contained in:
Ken Sternberg
2024-07-16 09:23:28 -07:00
parent 3ced637db3
commit f8cb4e880b
4 changed files with 15 additions and 9 deletions

10
web/package-lock.json generated
View File

@ -93,7 +93,7 @@
"eslint-config-google": "^0.14.0",
"eslint-plugin-custom-elements": "0.0.8",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-sonarjs": "0.25.1",
"eslint-plugin-storybook": "^0.8.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",
@ -14421,15 +14421,15 @@
"license": "MIT"
},
"node_modules/eslint-plugin-sonarjs": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-1.0.3.tgz",
"integrity": "sha512-6s41HLPYPyDrp+5+7Db5yFYbod6h9pC7yx+xfcNwHRcLe1EZwbbQT/tdOAkR7ekVUkNGEvN3GmYakIoQUX7dEg==",
"version": "0.25.1",
"resolved": "https://registry.npmjs.org/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.25.1.tgz",
"integrity": "sha512-5IOKvj/GMBNqjxBdItfotfRHo7w48496GOu1hxdeXuD0mB1JBlDCViiLHETDTfA8pDAVSBimBEQoetRXYceQEw==",
"dev": true,
"engines": {
"node": ">=16"
},
"peerDependencies": {
"eslint": "^8.0.0 || ^9.0.0"
"eslint": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/eslint-plugin-storybook": {

View File

@ -120,7 +120,7 @@
"eslint-config-google": "^0.14.0",
"eslint-plugin-custom-elements": "0.0.8",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-sonarjs": "0.25.1",
"eslint-plugin-storybook": "^0.8.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",

View File

@ -70,7 +70,7 @@ function findChangedFiles() {
modified(status) && checkable(filename) && notIgnored(filename)
? [...acc, path.join(projectRoot, filename)]
: acc,
[]
[],
);
}

View File

@ -45,7 +45,10 @@ export class RedirectStage extends BaseStage<RedirectChallenge, FlowChallengeRes
if (this.promptUser) {
return;
}
console.debug("authentik/stages/redirect: redirecting to url from server", this.challenge.to);
console.debug(
"authentik/stages/redirect: redirecting to url from server",
this.challenge.to,
);
window.location.assign(this.challenge.to);
this.startedRedirect = true;
}
@ -57,7 +60,10 @@ export class RedirectStage extends BaseStage<RedirectChallenge, FlowChallengeRes
// As this wouldn't really be a redirect, show a message that the page can be closed
// and try to close it ourselves
if (!url.protocol.startsWith("http")) {
return html`<ak-empty-state icon="fas fa-check" header=${msg("You may close this page now.")}>
return html`<ak-empty-state
icon="fas fa-check"
header=${msg("You may close this page now.")}
>
</ak-empty-state>`;
}
return html`<ak-empty-state ?loading=${true} header=${msg("Loading")}> </ak-empty-state>`;