You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there are a lot of choices in a dropdown, a bar will appear. In this case, when I select a new key, the bar will jump to the first key I've chosen. This is so inconvenient.
Have you searched existing issues? 🔎
I have searched and found no existing issues
Reproduction
importgradioasgrdefsentence_builder(quantity, animal, countries, place, activity_list, morning):
returnf"""The {quantity}{animal}s from {" and ".join(countries)} went to the {place} where they {" and ".join(activity_list)} until the {"morning"ifmorningelse"night"}"""demo=gr.Interface(
sentence_builder,
[
gr.Slider(2, 20, value=4, label="Count", info="Choose between 2 and 20"),
gr.Dropdown(
["cat", "dog", "bird"], label="Animal", info="Will add more animals later!"
),
gr.CheckboxGroup(["USA", "Japan", "Pakistan"], label="Countries", info="Where are they from?"),
gr.Radio(["park", "zoo", "road"], label="Location", info="Where did they go?"),
gr.Dropdown(
["ran", "swam", "ate", "slept", "ran1", "swam1", "ate1", "slept1", "ran2", "swam2", "ate2", "slept2", "ran3", "swam3", "ate3", "slept3", "ran4", "swam4", "ate4", "slept4", "ran5", "swam5", "ate5", "slept5", "ran6", "swam6", "ate6", "slept6", "ran7", "swam7", "ate7", "slept7"], value=["swam", "slept"], multiselect=True, label="Activity", info="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed auctor, nisl eget ultricies aliquam, nunc nisl aliquet nunc, eget aliquam nisl nunc vel nisl."
),
gr.Checkbox(label="Morning", info="Did they do it in the morning?"),
],
"text",
examples=[
[2, "cat", ["Japan", "Pakistan"], "park", ["ate", "swam"], True],
[4, "dog", ["Japan"], "zoo", ["ate", "swam"], False],
[10, "bird", ["USA", "Pakistan"], "road", ["ran"], False],
[8, "cat", ["Pakistan"], "zoo", ["ate"], True],
]
)
if__name__=="__main__":
demo.launch()
Screenshot
Logs
No response
System Info
gradio 5.12
Severity
I can work around it
The text was updated successfully, but these errors were encountered:
Describe the bug
If there are a lot of choices in a dropdown, a bar will appear. In this case, when I select a new key, the bar will jump to the first key I've chosen. This is so inconvenient.
Have you searched existing issues? 🔎
Reproduction
Screenshot
Logs
No response
System Info
Severity
I can work around it
The text was updated successfully, but these errors were encountered: