diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-12-24 06:58:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 06:58:28 +0000 |
commit | fac92610d22d1166890b17b167c034090a096e5a (patch) | |
tree | 059e9c4d3314278472b8f4e1b0a14b59952d7973 /javascript/ui.js | |
parent | 94450b88775ee14392d05ef6a8fc915b93946b9e (diff) | |
parent | c0355caefe3d82e304e6d832699d581fc8f9fbf9 (diff) | |
download | stable-diffusion-webui-gfx803-fac92610d22d1166890b17b167c034090a096e5a.tar.gz stable-diffusion-webui-gfx803-fac92610d22d1166890b17b167c034090a096e5a.tar.bz2 stable-diffusion-webui-gfx803-fac92610d22d1166890b17b167c034090a096e5a.zip |
Merge pull request #5753 from calvinballing/master
Fix various typos
Diffstat (limited to 'javascript/ui.js')
-rw-r--r-- | javascript/ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/ui.js b/javascript/ui.js index 2cb280e5..587dd782 100644 --- a/javascript/ui.js +++ b/javascript/ui.js @@ -100,7 +100,7 @@ function create_submit_args(args){ // As it is currently, txt2img and img2img send back the previous output args (txt2img_gallery, generation_info, html_info) whenever you generate a new image. // This can lead to uploading a huge gallery of previously generated images, which leads to an unnecessary delay between submitting and beginning to generate. - // I don't know why gradio is seding outputs along with inputs, but we can prevent sending the image gallery here, which seems to be an issue for some. + // I don't know why gradio is sending outputs along with inputs, but we can prevent sending the image gallery here, which seems to be an issue for some. // If gradio at some point stops sending outputs, this may break something if(Array.isArray(res[res.length - 3])){ res[res.length - 3] = null |