Skip to content

Commit

Permalink
prompt adjusts
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Dec 26, 2024
1 parent d0dbaeb commit 572541d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generators/quarkus/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ export default asCommand({
type: 'list',
default: gen.jhipsterConfigWithDefaults.prodDatabaseType,
message: `Which ${chalk.yellow('*development*')} database would you like to use?`,
choices: [
choices: answers => [
{ value: 'h2Disk', name: 'H2 with disk-based persistence' },
{ value: 'h2Memory', name: 'H2 with in-memory persistence' },
{
value: gen.jhipsterConfigWithDefaults.prodDatabaseType,
name: `Same as production (${gen.jhipsterConfigWithDefaults.prodDatabaseType})`,
value: answers.prodDatabaseType ?? gen.jhipsterConfigWithDefaults.prodDatabaseType,
name: `Same as production (${answers.prodDatabaseType ?? gen.jhipsterConfigWithDefaults.prodDatabaseType})`,
},
],
}),
Expand Down

0 comments on commit 572541d

Please sign in to comment.