stable-diffusion-webui/javascript/gradio.js
2024-03-02 08:48:34 +03:00

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;
}
});