diff --git a/src/commands/deployment/testservers/status/status.ts b/src/commands/deployment/testservers/status/status.ts index ff8aed7..23ef2c4 100644 --- a/src/commands/deployment/testservers/status/status.ts +++ b/src/commands/deployment/testservers/status/status.ts @@ -39,11 +39,11 @@ module.exports = { const getStatusIcon = (status: string): string => { switch (status) { case 'open': - return '✅'; + return '✅ open'; case 'closed': - return '❌'; + return '❌ closed'; case 'null': - return '❔'; + return '❔ unknown'; } }; @@ -121,7 +121,7 @@ module.exports = { '| status', 'stack', 'branch', - 'status', + 'issue status', 'time since update', 'url' ])