mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
Ensure gradio client works as expected for functions that return nothing. (#5173)
* fixed issue with the js client expecting optional api_info from python gradio runner * add changeset * add changeset --------- Co-authored-by: pngwn <hello@pngwn.io> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
43f3d3d77c
commit
730f0c1d54
6
.changeset/legal-donuts-burn.md
Normal file
6
.changeset/legal-donuts-burn.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/client": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Ensure gradio client works as expected for functions that return nothing.
|
@ -804,9 +804,9 @@ function transform_output(
|
||||
remote_url?: string
|
||||
): unknown[] {
|
||||
return data.map((d, i) => {
|
||||
if (api_info.returns?.[i]?.component === "File") {
|
||||
if (api_info?.returns?.[i]?.component === "File") {
|
||||
return normalise_file(d, root_url, remote_url);
|
||||
} else if (api_info.returns?.[i]?.component === "Gallery") {
|
||||
} else if (api_info?.returns?.[i]?.component === "Gallery") {
|
||||
return d.map((img) => {
|
||||
return Array.isArray(img)
|
||||
? [normalise_file(img[0], root_url, remote_url), img[1]]
|
||||
|
Loading…
x
Reference in New Issue
Block a user