diff --git a/backend/package.json b/backend/package.json
index 7b3b064f4..3f1fc5698 100644
--- a/backend/package.json
+++ b/backend/package.json
@@ -5,7 +5,7 @@
 	"license": "Apache 2.0",
 	"description": "Provide rich user experience for Yeoman generators using VSCode extension or the browser",
 	"repository": "https://github.com/SAP/yeoman-ui",
-	"version": "0.0.43",
+	"version": "0.0.44",
 	"engines": {
 		"vscode": "^1.39.2"
 	},
diff --git a/frontend/src/App.vue b/frontend/src/App.vue
index 1c393f676..d02ce667a 100644
--- a/frontend/src/App.vue
+++ b/frontend/src/App.vue
@@ -33,7 +33,7 @@
           />
           <PromptInfo v-if="currentPrompt && !isDone" :currentPrompt="currentPrompt" />
           <GeneratorSelection
-            v-if="currentPrompt && currentPrompt.name === 'Select Generator'"
+            v-if="currentPrompt && currentPrompt.questions && currentPrompt.questions[0] && currentPrompt.questions[0].type==='generators'"
             @generatorSelected="selectGenerator"
             :currentQuestion="currentPrompt.questions[0]"
           />