We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee9b19 commit b2fc822Copy full SHA for b2fc822
src/dispatch/plugins/dispatch_slack/incident/interactive.py
@@ -2123,6 +2123,14 @@ def handle_update_incident_command(
2123
description_input(initial_value=incident.description),
2124
resolution_input(initial_value=incident.resolution),
2125
incident_status_select(initial_option={"text": incident.status, "value": incident.status}),
2126
+ incident_type_select(
2127
+ db_session=db_session,
2128
+ initial_option={
2129
+ "text": incident.incident_type.name,
2130
+ "value": incident.incident_type.id,
2131
+ },
2132
+ project_id=incident.project.id,
2133
+ ),
2134
Section(text=f"*Project*: {incident.project.display_name}"),
2135
Context(elements=[MarkdownText(text="Project is read-only")]),
2136
incident_severity_select(
0 commit comments