Skip to content

Commit

Permalink
Merge pull request #883 from solidify/bugfix/map-correct-epic-link-field
Browse files Browse the repository at this point in the history
Use the EpicLink field from the config when migrating epic links
  • Loading branch information
Alexander-Hjelm authored Oct 18, 2023
2 parents 56a7600 + 2ca83c4 commit e831745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WorkItemMigrator/JiraExport/JiraMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ internal List<WiLink> MapLinks(JiraRevision r)
}

// map epic link
LinkMapperUtils.AddRemoveSingleLink(r, links, _jiraProvider.GetSettings().EpicLinkField, "Epic", _config);
LinkMapperUtils.AddRemoveSingleLink(r, links, _config.EpicLinkField, "Epic", _config);

// map parent
LinkMapperUtils.AddRemoveSingleLink(r, links, "parent", "Parent", _config);
Expand Down

0 comments on commit e831745

Please sign in to comment.