File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/dispatch/plugins/dispatch_slack/incident Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -2123,6 +2123,14 @@ def handle_update_incident_command(
2123
2123
description_input (initial_value = incident .description ),
2124
2124
resolution_input (initial_value = incident .resolution ),
2125
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
+ ),
2126
2134
Section (text = f"*Project*: { incident .project .display_name } " ),
2127
2135
Context (elements = [MarkdownText (text = "Project is read-only" )]),
2128
2136
incident_severity_select (
You can’t perform that action at this time.
0 commit comments