ensure there is a space between active requests mentioned in the status bar at the top

This commit is contained in:
Mechiel Lukkien
2023-10-14 11:13:26 +02:00
parent 28fae96a9b
commit 6e391c3be0
2 changed files with 2 additions and 2 deletions

View File

@ -1680,7 +1680,7 @@ let statusElem;
const withStatus = async (action, promise, disablable, noAlert) => {
let elem;
let id = window.setTimeout(() => {
elem = dom.span(action + '...');
elem = dom.span(action + '... ');
statusElem.appendChild(elem);
id = 0;
}, 1000);