Skip to content

Commit

Permalink
index.js: do not line break status text
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
mwarning committed Sep 28, 2024
1 parent bd77082 commit bc2a1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function buildAsuRequest(request_hash) {
}></progress>`;
}

status += `<span class="${tr}">${message}</span>`;
status += `<span class="${tr}" style='white-space: nowrap;'>${message}</span>`;

$("#asu-buildstatus span").innerHTML = status;
translate();
Expand Down

0 comments on commit bc2a1d4

Please sign in to comment.