Skip to content

Commit

Permalink
Update will fix #59
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHinsh committed Jul 18, 2024
1 parent 93b43bb commit f06bd86
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,11 @@ internal void WriteOutSettings(WorkItemCloneCommandSettings config)
.AddRow("targetProject", config.targetProject != null ? config.targetProject : "NOT SET")
.AddRow("targetParentId", config.targetParentId != null ? config.targetParentId.ToString() : "NOT SET")
.AddRow("targetFalbackWit", config.targetFalbackWit != null ? config.targetFalbackWit : "NOT SET")

.AddEmptyRow()
.AddRow("targetQueryTitle", config.targetQueryTitle != null ? config.targetQueryTitle : "NOT SET")
.AddRow("targetQueryFolder", config.targetQueryFolder != null ? config.targetQueryFolder : "NOT SET")
.AddRow("targetQuery", config.targetQuery != null ? config.targetQuery.Replace("]", "]]").Replace("[", "[[") : "NOT SET")

);
}

Expand Down

0 comments on commit f06bd86

Please sign in to comment.