Skip to content

Commit f06bd86

Browse files
committed
Update will fix #59
1 parent 93b43bb commit f06bd86

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

AzureDevOps.WorkItemClone.ConsoleUI/Commands/WorkItemCommandBase.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,11 @@ internal void WriteOutSettings(WorkItemCloneCommandSettings config)
228228
.AddRow("targetProject", config.targetProject != null ? config.targetProject : "NOT SET")
229229
.AddRow("targetParentId", config.targetParentId != null ? config.targetParentId.ToString() : "NOT SET")
230230
.AddRow("targetFalbackWit", config.targetFalbackWit != null ? config.targetFalbackWit : "NOT SET")
231-
231+
.AddEmptyRow()
232+
.AddRow("targetQueryTitle", config.targetQueryTitle != null ? config.targetQueryTitle : "NOT SET")
233+
.AddRow("targetQueryFolder", config.targetQueryFolder != null ? config.targetQueryFolder : "NOT SET")
234+
.AddRow("targetQuery", config.targetQuery != null ? config.targetQuery.Replace("]", "]]").Replace("[", "[[") : "NOT SET")
235+
232236
);
233237
}
234238

0 commit comments

Comments
 (0)