mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-24 10:51:03 -08:00
Replace args_to_array (and facsimiles) with Array.from
This commit is contained in:
parent
3909c2b2a0
commit
563e88dd91
3 changed files with 13 additions and 28 deletions
|
|
@ -9,7 +9,7 @@ function start_training_textual_inversion() {
|
|||
gradioApp().getElementById('ti_progress').innerHTML = progress.textinfo;
|
||||
});
|
||||
|
||||
var res = args_to_array(arguments);
|
||||
var res = Array.from(arguments);
|
||||
|
||||
res[0] = id;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue