Skip to content

Commit b783598

Browse files
committed
Fix bugs
1 parent 786eaf5 commit b783598

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira

1 file changed

+1
-1
lines changed

x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/jira_params.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const JiraParamsFields: React.FunctionComponent<ActionParamsProps<JiraActionPara
9797
if (incident.issueType != null && fields != null) {
9898
const priorities = fields.priority != null ? fields.priority.allowedValues : [];
9999
if (!incident.priority && priorities.length > 0) {
100-
editSubActionProperty('priority', priorities[0].id ?? '');
100+
editSubActionProperty('priority', priorities[0].name ?? '');
101101
}
102102
return priorities.map((p: { id: string; name: string }) => {
103103
return {

0 commit comments

Comments
 (0)