From 81acbe19ebb0d37e9b0f5bb0ceef9b1e18bfe0a8 Mon Sep 17 00:00:00 2001 From: lowlighter <22963968+lowlighter@users.noreply.github.com> Date: Tue, 18 Jan 2022 12:43:48 -0500 Subject: [PATCH] fix(app/actions): option name display wider than supported --- source/app/action/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app/action/index.mjs b/source/app/action/index.mjs index 4c1a77fb..391c084b 100644 --- a/source/app/action/index.mjs +++ b/source/app/action/index.mjs @@ -18,7 +18,7 @@ let DEBUG = true const debugged = [] //Info logger -const info = (left, right, {token = false} = {}) => console.log(`${`${left}`.padEnd(56 + 9 * (/0m$/.test(left)))} │ ${ +const info = (left, right, {token = false} = {}) => console.log(`${`${left}`.padEnd(63 + 9 * (/0m$/.test(left)))} │ ${ Array.isArray(right) ? right.join(", ") || "(none)" : right === undefined