diff --git a/web/package-lock.json b/web/package-lock.json index c28f5b936..d8fbaf541 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -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", diff --git a/web/package.json b/web/package.json index e4969ff85..3b06724a0 100644 --- a/web/package.json +++ b/web/package.json @@ -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", diff --git a/web/src/api/Users.ts b/web/src/api/Users.ts index 9c325405f..add8cec97 100644 --- a/web/src/api/Users.ts +++ b/web/src/api/Users.ts @@ -46,7 +46,9 @@ export function me(): Promise { 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; });