Fix JS call (#4486)

* changes

* changes
This commit is contained in:
aliabid94 2023-06-12 17:24:09 -07:00 committed by GitHub
parent 3383d8872b
commit bda25eb19c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -15,6 +15,7 @@
- Ensure components have the correct empty sizes to prevent empty containers from collapsing by [@pngwn](https://github.com/pngwn) in [PR 4447](https://github.com/gradio-app/gradio/pull/4447).
- Frontend code no longer crashes when there is a relative URL in an `<a>` element, by [@akx](https://github.com/akx) in [PR 4449](https://github.com/gradio-app/gradio/pull/4449).
- Fix bug where setting `format='mp4'` on a video component would cause the function to error out if the uploaded video was not playable by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4467](https://github.com/gradio-app/gradio/pull/4467)
- Fix `_js` parameter to work even without backend function, by [@aliabid94](https://github.com/aliabid94) in [PR 4486](https://github.com/gradio-app/gradio/pull/4486).
## Other Changes:

View File

@ -213,11 +213,11 @@
output.props[update_key] = update_value;
}
}
rootNode = rootNode;
} else {
output.props.value = value;
}
});
rootNode = rootNode;
}
let submit_map: Map<number, ReturnType<typeof app.submit>> = new Map();
@ -259,6 +259,7 @@
};
if (dep.frontend_fn) {
console.log("running frontend fn");
dep
.frontend_fn(
payload.data.concat(
@ -266,6 +267,7 @@
)
)
.then((v: []) => {
console.log("got frontend fn result:", v);
if (dep.backend_fn) {
payload.data = v;
make_prediction();