Skip to content

Commit

Permalink
Fix incorrect use of double quotes in KUI generator snippet. (#13086)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal authored Jul 25, 2017
1 parent 3d34fff commit c370632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui_framework/generator-kui/documentation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ module.exports = class extends Generator {
this.log(chalk.white('\n// Import route definition into routes.js.'));
this.log(
`{\n` +
` name: ${chalk.cyan(`"${componentExampleName}"`)},\n` +
` name: ${chalk.cyan(`'${componentExampleName}'`)},\n` +
` component: ${componentExampleName}${suffix},\n` +
` hasReact: ${chalk.magenta('true')},\n` +
`}`
Expand Down

0 comments on commit c370632

Please sign in to comment.