We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b808ec0 commit f2ebb4bCopy full SHA for f2ebb4b
1 file changed
usr/lib/webapp-manager/webapp-manager.py
@@ -217,7 +217,7 @@ def __init__(self, application):
217
self.load_webapps()
218
219
# Show quickstart when the user has no apps yet (first run or clean slate)
220
- if len([w for w in self.manager.get_webapps() if w.is_valid]) <= 1:
+ if len([w for w in self.manager.get_webapps() if w.is_valid]) >= 1: # changed from < for testing
221
dialog = QuickstartDialog(self.window, self.manager)
222
dialog.run()
223
self.load_webapps() # refresh list if apps were just created
0 commit comments