mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-07-21 21:01:24 +08:00
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
// added to fix a weird error in gradio 4.19 at page load
|
|
Object.defineProperty(Array.prototype, "toLowerCase", {
|
|
value: function () {
|
|
return this;
|
|
},
|
|
});
|