mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-01-20 21:30:09 +08:00
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
|
|
// added to fix a weird error in gradio 4.19 at page load
|
|
Object.defineProperty(Array.prototype, 'toLowerCase', {
|
|
value: function() {
|
|
return this;
|
|
}
|
|
});
|