1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-10 16:47:24 +01:00

Add a 'welcome' panel to the control panel and make it the default page instead of the status checks which take too long to load

Fixes #2014
This commit is contained in:
Joshua Tauberer
2021-08-22 16:38:49 -04:00
parent e884c4774f
commit 26932ecb10
3 changed files with 23 additions and 1 deletions

View File

@@ -163,7 +163,7 @@ function do_login() {
// Open the next panel the user wants to go to. Do this after the XHR response
// is over so that we don't start a new XHR request while this one is finishing,
// which confuses the loading indicator.
setTimeout(function() { show_panel(!switch_back_to_panel || switch_back_to_panel == "login" ? 'system_status' : switch_back_to_panel) }, 300);
setTimeout(function() { show_panel(!switch_back_to_panel || switch_back_to_panel == "login" ? 'welcome' : switch_back_to_panel) }, 300);
}
},
undefined,