We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d022a5d commit d3af62cCopy full SHA for d3af62c
interactions/models/component.py
@@ -192,6 +192,8 @@ def __init__(self, **kwargs) -> None:
192
self.options = (
193
[SelectMenu(**option) for option in self.options] if self._json.get("options") else None
194
)
195
+ if self._json.get("components"):
196
+ self._json["components"] = [component._json for component in self.components]
197
198
199
class TextInput(DictSerializerMixin):
0 commit comments