Skip to content

Commit

Permalink
fix: updating jira storypoint field should refresh all records
Browse files Browse the repository at this point in the history
  • Loading branch information
klesh committed Sep 13, 2024
1 parent 545e745 commit d792da7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion backend/plugins/jira/tasks/issue_extractor.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ func ExtractIssues(subtaskCtx plugin.SubTaskContext) errors.Error {
ConnectionId: data.Options.ConnectionId,
BoardId: data.Options.BoardId,
},
SubtaskConfig: mappings,
SubtaskConfig: map[string]any{
"typeMappings": mappings,
"storyPointField": data.Options.ScopeConfig.StoryPointField,
},
},
Extract: func(row *api.RawData) ([]interface{}, errors.Error) {
return extractIssues(data, mappings, row, userFieldMap)
Expand Down

0 comments on commit d792da7

Please sign in to comment.