mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-25 02:10:32 -06:00
SDA-4507 - Fix condition for force welcome screen (#2117)
This commit is contained in:
parent
3dde3d0678
commit
e1dbc8eb0c
@ -288,8 +288,12 @@ export class WindowHandler {
|
||||
config.isFirstTimeLaunch()) ||
|
||||
!!this.config.enableBrowserLogin;
|
||||
// Force welcome screen if pod url is not configured correctly
|
||||
this.shouldShowWelcomeScreen =
|
||||
!!this.userConfig.url && this.userConfig.url.includes(this.defaultUrl);
|
||||
if (
|
||||
!!this.userConfig.url &&
|
||||
this.userConfig.url.includes(this.defaultUrl)
|
||||
) {
|
||||
this.shouldShowWelcomeScreen = true;
|
||||
}
|
||||
|
||||
this.windowOpts = {
|
||||
...this.getWindowOpts(
|
||||
|
Loading…
Reference in New Issue
Block a user