Skip to content

Commit

Permalink
Change FileInput class inherit to ActionableComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
cleavenworth committed Mar 5, 2024
1 parent 3ebc9b3 commit 883b0ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockkit/elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ def __init__(
):
super().__init__(elements=elements, style=style, indent=indent)

class FileInput(FocusableElement):
class FileInput(ActionableComponent):
type: str = "file_input"
filetypes: Optional[List[str]] = Field(None)
maxfiles: Optional[int] = Field(..., gt=0, le=10)
Expand Down

0 comments on commit 883b0ea

Please sign in to comment.