提交 fadbab37 编写于 作者: A AUTOMATIC1111

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

上级 a0e74c4d
...@@ -239,13 +239,13 @@ def create_refresh_button(refresh_component, refresh_method, refreshed_args, ele ...@@ -239,13 +239,13 @@ def create_refresh_button(refresh_component, refresh_method, refreshed_args, ele
for comp in refresh_components: for comp in refresh_components:
setattr(comp, k, v) 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 = ToolButton(value=refresh_symbol, elem_id=elem_id, tooltip=f"{label}: refresh" if label else "Refresh")
refresh_button.click( refresh_button.click(
fn=refresh, fn=refresh,
inputs=[], inputs=[],
outputs=[*refresh_components] outputs=refresh_components
) )
return refresh_button return refresh_button
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册