We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25033a2 + 6f34a3c commit 5d1b14aCopy full SHA for 5d1b14a
extra-assets/js/login.js
@@ -18,7 +18,8 @@ $(function() {
18
redirectIfNeeded();
19
// if next query param is presentm just do nothing
20
const nextPresent = new URL(document.location).searchParams.get('next');
21
- if (!nextPresent) {
+ // /hub/ being next should be treated same as no next present
22
+ if (!nextPresent || nextPresent === "/hub/") {
23
setInterface($("input[name='interface']:checked").val());
24
25
$("input[name='interface']").change(function() {
0 commit comments