Skip to content

Commit

Permalink
add init_option resolve to ext men sel resolve (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
K8sKween authored Feb 18, 2024
1 parent 843cc7a commit 687a3cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slackblocks/elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 687a3cc

Please sign in to comment.