diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-01 11:09:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-01 11:09:32 +0000 |
commit | 6fbd85dd0c0dffc06560bff91f4c4b65e441ca5f (patch) | |
tree | d1e0ff50e327c3c59230b39907284c20ffbf0fe3 | |
parent | 67f5c2abb0a9293245de5f00f0b8cd82e2a7cdd0 (diff) | |
parent | 33e6bc34ff4f826060489f0f76e6653672c8f1aa (diff) | |
download | stable-diffusion-webui-gfx803-6fbd85dd0c0dffc06560bff91f4c4b65e441ca5f.tar.gz stable-diffusion-webui-gfx803-6fbd85dd0c0dffc06560bff91f4c4b65e441ca5f.tar.bz2 stable-diffusion-webui-gfx803-6fbd85dd0c0dffc06560bff91f4c4b65e441ca5f.zip |
Merge pull request #9969 from AUTOMATIC1111/restore_progress_fix
restore_progress fix
-rw-r--r-- | javascript/ui.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript/ui.js b/javascript/ui.js index 42de9114..bfe31525 100644 --- a/javascript/ui.js +++ b/javascript/ui.js @@ -218,7 +218,7 @@ function restoreProgressTxt2img(x){ }, null, 0) } - return [id] + return id } function restoreProgressImg2img(x){ showRestoreProgressButton("img2img", false) @@ -231,7 +231,7 @@ function restoreProgressImg2img(x){ }, null, 0) } - return [id] + return id } |