aboutsummaryrefslogtreecommitdiffstats
path: root/javascript
diff options
context:
space:
mode:
authorVladimir Mandic <mandic00@live.com>2023-02-25 17:56:03 +0000
committerGitHub <noreply@github.com>2023-02-25 17:56:03 +0000
commited43a822b2df601fd1d6d2a3b97ae5924c06ca98 (patch)
treef510c8f36788bd33a2dafee0e59922c373a223d9 /javascript
parent0cc0ee1bcb4c24a8c9715f66cede06601bfc00c8 (diff)
downloadstable-diffusion-webui-gfx803-ed43a822b2df601fd1d6d2a3b97ae5924c06ca98.tar.gz
stable-diffusion-webui-gfx803-ed43a822b2df601fd1d6d2a3b97ae5924c06ca98.tar.bz2
stable-diffusion-webui-gfx803-ed43a822b2df601fd1d6d2a3b97ae5924c06ca98.zip
fix progressbar
Diffstat (limited to 'javascript')
-rw-r--r--javascript/progressbar.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/progressbar.js b/javascript/progressbar.js
index ff6d757b..9ccc9da4 100644
--- a/javascript/progressbar.js
+++ b/javascript/progressbar.js
@@ -139,7 +139,7 @@ function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgre
var divProgress = document.createElement('div')
divProgress.className='progressDiv'
- divProgress.style.display = opts.show_progressbar ? "" : "none"
+ divProgress.style.display = opts.show_progressbar ? "block" : "none"
var divInner = document.createElement('div')
divInner.className='progress'