Skip to content

Commit

Permalink
Using correct form_data key
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 committed Nov 5, 2024
1 parent e1b79e1 commit 0ea0423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch/plugins/dispatch_slack/case/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def engage(
"""Handles the engage user action."""
ack()

if form_data.get(DefaultBlockIds.description_input):
if form_data.get(DefaultBlockIds.participant_select):
participant_id = form_data[DefaultBlockIds.participant_select]["value"]
participant = participant_service.get(db_session=db_session, participant_id=participant_id)
if participant:
Expand Down

0 comments on commit 0ea0423

Please sign in to comment.