build(deps): bump @patternfly/patternfly from 4.196.7 to 4.202.1 in /web (#3187)

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
dependabot[bot] 2022-07-01 09:21:02 +02:00 committed by Jens Langhammer
parent 69b5670659
commit 9597ea9e1f
3 changed files with 11 additions and 9 deletions

14
web/package-lock.json generated
View File

@ -22,7 +22,7 @@
"@lingui/core": "^3.14.0",
"@lingui/detect-locale": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@patternfly/patternfly": "^4.196.7",
"@patternfly/patternfly": "^4.202.1",
"@polymer/iron-form": "^3.0.1",
"@polymer/paper-input": "^3.2.1",
"@rollup/plugin-babel": "^5.3.1",
@ -2239,9 +2239,9 @@
}
},
"node_modules/@patternfly/patternfly": {
"version": "4.196.7",
"resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-4.196.7.tgz",
"integrity": "sha512-hA7Oww411e1p0/IXjC1I+4/1NNis9V+NVBxfUIpRwyuLbCIDHBdtMu2qAPLdKxXjuibV9EE6ZdlT7ra/kcFuJQ=="
"version": "4.202.1",
"resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-4.202.1.tgz",
"integrity": "sha512-cQiiPqmwJOm9onuTfLPQNRlpAZwDIJ/zVfDQeaFqMQyPJtxtKn3lkphz5xErY5dPs9rR4X94ytQ1I9pkVzaPJQ=="
},
"node_modules/@polymer/font-roboto": {
"version": "3.0.2",
@ -10432,9 +10432,9 @@
}
},
"@patternfly/patternfly": {
"version": "4.196.7",
"resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-4.196.7.tgz",
"integrity": "sha512-hA7Oww411e1p0/IXjC1I+4/1NNis9V+NVBxfUIpRwyuLbCIDHBdtMu2qAPLdKxXjuibV9EE6ZdlT7ra/kcFuJQ=="
"version": "4.202.1",
"resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-4.202.1.tgz",
"integrity": "sha512-cQiiPqmwJOm9onuTfLPQNRlpAZwDIJ/zVfDQeaFqMQyPJtxtKn3lkphz5xErY5dPs9rR4X94ytQ1I9pkVzaPJQ=="
},
"@polymer/font-roboto": {
"version": "3.0.2",

View File

@ -65,7 +65,7 @@
"@lingui/core": "^3.14.0",
"@lingui/detect-locale": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@patternfly/patternfly": "^4.196.7",
"@patternfly/patternfly": "^4.202.1",
"@polymer/iron-form": "^3.0.1",
"@polymer/paper-input": "^3.2.1",
"@rollup/plugin-babel": "^5.3.1",

View File

@ -46,7 +46,9 @@ export function me(): Promise<SessionUser> {
const relativeUrl = window.location
.toString()
.substring(window.location.origin.length);
window.location.assign(`/flows/-/default/authentication/?next=${encodeURIComponent(relativeUrl)}`);
window.location.assign(
`/flows/-/default/authentication/?next=${encodeURIComponent(relativeUrl)}`,
);
}
return defaultUser;
});