Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/dispatch/plugins/dispatch_slack/case/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -1119,6 +1119,7 @@ def resolve_button_click(
case = case_service.get(db_session=db_session, case_id=context["subject"].id)

blocks = [
case_resolution_reason_select(),
resolution_input(initial_value=case.resolution),
]

Expand Down
2 changes: 1 addition & 1 deletion src/dispatch/plugins/dispatch_slack/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def resolution_input(
def case_resolution_reason_select(
action_id: str = DefaultActionIds.case_resolution_reason_select,
block_id: str = DefaultBlockIds.case_resolution_reason_select,
label: str = "",
label: str = "Resolution Reason",
initial_option: dict = None,
**kwargs,
):
Expand Down