diff --git a/webmail/webmail.js b/webmail/webmail.js index d6ff026..bf662b0 100644 --- a/webmail/webmail.js +++ b/webmail/webmail.js @@ -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); diff --git a/webmail/webmail.ts b/webmail/webmail.ts index 8a2b25b..7c6147b 100644 --- a/webmail/webmail.ts +++ b/webmail/webmail.ts @@ -761,7 +761,7 @@ let statusElem: HTMLElement const withStatus = async (action: string, promise: Promise, disablable?: Disablable, noAlert?: boolean): Promise => { let elem: HTMLElement | undefined let id = window.setTimeout(() => { - elem = dom.span(action+'...') + elem = dom.span(action+'... ') statusElem.appendChild(elem) id = 0 }, 1000)