stable-diffusion-webui/javascript/gradio.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
170 B
JavaScript
Raw Normal View History

2024-03-02 13:48:34 +08:00
// added to fix a weird error in gradio 4.19 at page load
Object.defineProperty(Array.prototype, 'toLowerCase', {
value: function() {
return this;
}
});