mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-02-01 05:11:19 -08:00
Fix details view errors
This commit is contained in:
parent
26f77b93cd
commit
11ed5f6ecb
3 changed files with 25 additions and 4 deletions
|
|
@ -959,7 +959,10 @@ class ExtraNetworksTab {
|
|||
model_name: source_elem.dataset.name,
|
||||
},
|
||||
(response) => _show_details(response),
|
||||
() => _popup("Error fetching model details."),
|
||||
() => {
|
||||
console.warn(`Error fetching model details for ${source_elem.dataset.name}`);
|
||||
div_dets.innerHTML = `Error fetching model details for ${source_elem.dataset.name}`;
|
||||
},
|
||||
);
|
||||
if (this.dets_view_en) {
|
||||
this.resize_grid.toggle({elem: div_dets, override: true});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue