From 76f9f6fecc0efe39e910f17f8294575910ee9054 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arwid=20Thornstro=CC=88m?= Date: Mon, 10 Jun 2024 21:47:02 +0200 Subject: [PATCH] minor fixes to status issue status --- src/commands/deployment/testservers/status/status.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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' ])