mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-02-02 22:02:50 -08:00
fix typo
This commit is contained in:
parent
4b0f321ef7
commit
5b8ed5412f
1 changed files with 2 additions and 1 deletions
|
|
@ -80,6 +80,7 @@ class ExtraNetworksError extends Error {
|
|||
this.name = this.constructor.name;
|
||||
}
|
||||
}
|
||||
|
||||
class ExtraNetworksPageReadyError extends Error {
|
||||
constructor(...args) {
|
||||
super(...args);
|
||||
|
|
@ -410,7 +411,7 @@ class ExtraNetworksTab {
|
|||
}
|
||||
|
||||
setupResizeGrid() {
|
||||
if (!isNullOrUndefined(this.resize_grid) && !(gradioApp().contains(this.resize_grid.elem)) {
|
||||
if (!isNullOrUndefined(this.resize_grid) && !(gradioApp().contains(this.resize_grid.elem))) {
|
||||
this.resize_grid.destroy();
|
||||
this.resize_grid = null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue