Skip to content

Commit ca4ac09

Browse files
authored
Topic/fixes20240718 (#63)
This should provide: - Fix #59 - Fix #58
2 parents eb75d99 + f06bd86 commit ca4ac09

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

AzureDevOps.WorkItemClone.ConsoleUI/Commands/WorkItemCloneCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ await AnsiConsole.Progress()
9696
task1.Increment(result.processed);
9797
await Task.Delay(250);
9898
}
99-
task1.Description = $"[bold]Stage 1[/]: Load Template Items ({result.loadingFrom})";
99+
task1.Description = $"[bold]Stage 1+2[/]: Load Template Items ({result.loadingFrom})";
100100
task1.Increment(1);
101101
}
102102
task1.StopTask();

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)