Skip to content

Commit

Permalink
ensure there is a space between active requests mentioned in the stat…
Browse files Browse the repository at this point in the history
…us bar at the top
  • Loading branch information
mjl- committed Oct 14, 2023
1 parent 28fae96 commit 6e391c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webmail/webmail.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion webmail/webmail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ let statusElem: HTMLElement
const withStatus = async <T>(action: string, promise: Promise<T>, disablable?: Disablable, noAlert?: boolean): Promise<T> => {
let elem: HTMLElement | undefined
let id = window.setTimeout(() => {
elem = dom.span(action+'...')
elem = dom.span(action+'... ')
statusElem.appendChild(elem)
id = 0
}, 1000)
Expand Down

0 comments on commit 6e391c3

Please sign in to comment.