From 47a746aaf491f54596c3b66045392abe7a8413d5 Mon Sep 17 00:00:00 2001 From: streamich Date: Tue, 5 Mar 2019 14:17:26 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20add=20extra=20space=20aft?= =?UTF-8?q?er=20emoji?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/questions/type.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/questions/type.js b/lib/questions/type.js index 9af965de..fd04b67a 100644 --- a/lib/questions/type.js +++ b/lib/questions/type.js @@ -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,