Quick fix: Make component interactive when it is in focus (#6530)

* fi

* add changeset

* format

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
This commit is contained in:
Dawood Khan 2023-11-22 18:12:28 -05:00 committed by GitHub
parent 6d3fecfa42
commit 13ef0f0caa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/app": patch
"gradio": patch
---
fix:Quick fix: Make component interactive when it is in focus

View File

@ -491,7 +491,8 @@
outputs.forEach((id) => {
if (
instance_map[id].props.interactive &&
status.stage === "pending"
status.stage === "pending" &&
dep.targets[0][1] !== "focus"
) {
pending_outputs.push(id);
instance_map[id].props.interactive = false;