Curse you, gradio!!! fixes broken refresh button #12309

This commit is contained in:
AUTOMATIC1111 2023-08-04 14:56:27 +03:00
parent a0e74c4db4
commit fadbab3781
1 changed files with 2 additions and 2 deletions

View File

@ -239,13 +239,13 @@ def create_refresh_button(refresh_component, refresh_method, refreshed_args, ele
for comp in refresh_components:
setattr(comp, k, v)
return [gr.update(**(args or {})) for _ in refresh_components]
return (gr.update(**(args or {})) for _ in refresh_components) if len(refresh_components) > 1 else gr.update(**(args or {}))
refresh_button = ToolButton(value=refresh_symbol, elem_id=elem_id, tooltip=f"{label}: refresh" if label else "Refresh")
refresh_button.click(
fn=refresh,
inputs=[],
outputs=[*refresh_components]
outputs=refresh_components
)
return refresh_button