Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
fix: πŸ› add extra space after emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Mar 5, 2019
1 parent c5dccf5 commit 47a746a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/questions/type.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const pad = require('pad-right');

const typeToListItem = ({description, emoji, value}) => {
const prefix = emoji ? emoji + ' ' : '';
const prefix = emoji ? emoji + ' ' : '';

return {
name: prefix + pad(value + ':', 12, ' ') + description,
Expand Down

0 comments on commit 47a746a

Please sign in to comment.