From bc42b32b7ef6c82ce52f2085018c66124d94f643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bombo?= Date: Thu, 7 Nov 2024 14:07:02 -0600 Subject: [PATCH] dashboard: Change skip icon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use a more neutral icon as a skipped test should mostly mean that an earlier test has failed, not that there is an issue with the current test. Signed-off-by: Aurélien Bombo --- pages/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.js b/pages/index.js index 087c213..74e8e7d 100644 --- a/pages/index.js +++ b/pages/index.js @@ -103,7 +103,7 @@ export default function Home() { ? "✅" : run.result === "Fail" ? "❌" - : "⚠️"; + : "⏹️"; return (