mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
parent
3383d8872b
commit
bda25eb19c
@ -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:
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user