Skip to content

Commit

Permalink
added more flexible condition
Browse files Browse the repository at this point in the history
  • Loading branch information
urz9999 committed Oct 8, 2020
1 parent ad2a769 commit 0cee26b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/start/start-screen/start-screen.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class StartScreenComponent extends AntiMemLeak implements OnInit, AfterVi
* Is the app already configured or not?
*/
isAlreadyConfigured() {
return this.workspace && this.workspace.setupDone;
return this.workspace && (this.workspace.setupDone || this.workspace.idpUrl || this.workspace.sessions.length > 0);
}

// MVP: we use this to just check if aws cli is installed in order to proceed to
Expand Down

0 comments on commit 0cee26b

Please sign in to comment.