We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce4cf9a commit 009b880Copy full SHA for 009b880
packages/@vue/cli-ui/src/views/ProjectCreate.vue
@@ -425,7 +425,7 @@ export default {
425
426
configurationValid () {
427
return this.enabledPrompts.filter(
428
- p => p.value === null
+ p => p.value === null || JSON.parse(p.value) === ''
429
).length === 0
430
},
431
packages/@vue/cli-ui/src/views/ProjectPluginsAdd.vue
@@ -184,7 +184,9 @@ export default {
184
185
computed: {
186
187
- return false
+ return this.enabledPrompts.filter(
188
189
+ ).length === 0
190
191
192
enabledPrompts () {
0 commit comments