fix: update Multiselect component to use 'values' prop instead of 'value' (#2640)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-07-11 17:21:41 -03:00 committed by GitHub
commit 7d7502744e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 5 deletions

View file

@ -304,6 +304,7 @@ class MultiselectInput(BaseInputMixin, ListableInputMixin, DropDownMixin, Metada
field_type: Optional[SerializableFieldTypes] = FieldTypes.TEXT
options: list[str] = Field(default_factory=list)
is_list: bool = Field(default=True, serialization_alias="list")
class FileInput(BaseInputMixin, ListableInputMixin, FileMixin, MetadataTraceMixin):