diff --git a/lib/questions/type.js b/lib/questions/type.js index f20b75e0..2f8daab0 100644 --- a/lib/questions/type.js +++ b/lib/questions/type.js @@ -5,7 +5,7 @@ const typeToListItem = ({types, disableEmoji}, type) => { const prefix = emoji && !disableEmoji ? emoji + ' ' : ''; return { - name: prefix + value.padEnd(12, ' ') + description, + name: prefix + (value + ':').padEnd(12, ' ') + description, value }; };