Fix change event listed twice in image docs (#3318)

* fix document listing change twice

* Changelog
This commit is contained in:
Ali Abdalla 2023-02-24 13:00:52 -08:00 committed by GitHub
parent f5e7b57ceb
commit be4986de8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -38,6 +38,7 @@ By [@freddyaboulton](https://github.com/freddyaboulton) in [PR 3297](https://git
- Prevent Sketch from crashing when a default image is provided by [@pngwn](https://github.com/pngwn) in [PR 3277](https://github.com/gradio-app/gradio/pull/3277)
- Respect the `shape` argument on the front end when creating Image Sketches by [@pngwn](https://github.com/pngwn) in [PR 3277](https://github.com/gradio-app/gradio/pull/3277)
- Fix infinite loop caused by setting `Dropdown's` value to be `[]` and adding a change event on the dropdown by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 3295](https://github.com/gradio-app/gradio/pull/3295)
- Fix change event listed twice in image docs by [@aliabd](https://github.com/aliabd) in [PR 3318](https://github.com/gradio-app/gradio/pull/3318)
## Documentation Changes:
No changes to highlight.

View File

@ -1347,7 +1347,7 @@ class Dropdown(Changeable, IOComponent, SimpleSerializable, FormComponent):
return Component.style(self, container=container, **kwargs)
@document("edit", "clear", "change", "stream", "change", "style")
@document("edit", "clear", "change", "stream", "style")
class Image(
Editable,
Clearable,