Skip to content

Commit

Permalink
FIX Issue - GeneratorSelection (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomer-epstein authored Feb 26, 2020
1 parent 4467217 commit 00b88e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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]"
/>
Expand Down

0 comments on commit 00b88e5

Please sign in to comment.