From c1e9ffe27bb92ae3b7ec5bfef557cf1df365e78b Mon Sep 17 00:00:00 2001 From: David Whittaker Date: Tue, 20 May 2025 16:22:46 -0700 Subject: [PATCH] fix(slack): values must be str type --- src/dispatch/plugins/dispatch_slack/incident/interactive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch/plugins/dispatch_slack/incident/interactive.py b/src/dispatch/plugins/dispatch_slack/incident/interactive.py index 0544f82d4c6e..b27ad1c5b57f 100644 --- a/src/dispatch/plugins/dispatch_slack/incident/interactive.py +++ b/src/dispatch/plugins/dispatch_slack/incident/interactive.py @@ -2196,7 +2196,7 @@ def handle_update_incident_command( ), tag_multi_select( optional=True, - initial_options=[{"text": t.name, "value": t.id} for t in incident.tags], + initial_options=[{"text": t.name, "value": str(t.id)} for t in incident.tags], ), ]