From 687a3ccbd05c706fd6a7bf9880919d6f94f8182b Mon Sep 17 00:00:00 2001 From: Victoria Mann <102971594+K8sKween@users.noreply.github.com> Date: Sun, 18 Feb 2024 18:13:19 -0500 Subject: [PATCH] add init_option resolve to ext men sel resolve (#74) --- slackblocks/elements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slackblocks/elements.py b/slackblocks/elements.py index 7b8fc16..f4d9149 100644 --- a/slackblocks/elements.py +++ b/slackblocks/elements.py @@ -1269,7 +1269,7 @@ def _resolve(self) -> Dict[str, Any]: external_select_menu = self._attributes() external_select_menu["action_id"] = self.action_id if self.initial_option: - external_select_menu["initial_option"] = self.initial_option + external_select_menu["initial_option"] = self.initial_option._resolve() if self.min_query_length is not None: external_select_menu["min_query_length"] = self.min_query_length if self.confirm: