From 3c1b0e0539108b4c9ebd9a5bfe0bfbd3ee2eecde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 2 Jun 2022 11:44:29 +0200 Subject: [PATCH] Web: status indicator, swap arrows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ➜ is more visible than ➠, and thus should be used for the stronger status change request. --- web/app/src/statusindicator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/src/statusindicator.js b/web/app/src/statusindicator.js index a1201c84..d1314e37 100644 --- a/web/app/src/statusindicator.js +++ b/web/app/src/statusindicator.js @@ -31,9 +31,9 @@ export function workerStatus(worker) { let arrow; if (worker.lazy_status_request) { - arrow = `` + arrow = `` } else { - arrow = `` + arrow = `` } return `${worker.status} ${arrow} ${worker.status_requested}`;