From bc2a1d406c225110482d9340ee99972bc83bedd7 Mon Sep 17 00:00:00 2001 From: Moritz Warning Date: Fri, 27 Sep 2024 23:35:50 +0200 Subject: [PATCH] index.js: do not line break status text On mobile screen, do not spread the status text over two lines. Instead, display the whole status text below the progress bar. Signed-off-by: Moritz Warning --- www/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/index.js b/www/index.js index f1d743f6..298afb4d 100644 --- a/www/index.js +++ b/www/index.js @@ -95,7 +95,7 @@ function buildAsuRequest(request_hash) { }>`; } - status += `${message}`; + status += `${message}`; $("#asu-buildstatus span").innerHTML = status; translate();