fix formatting issue 2 with core dump

This commit is contained in:
2026-05-20 11:22:55 +02:00
parent 4cf0fdb6a0
commit 4874bf096c
3 changed files with 7 additions and 5 deletions
+3 -1
View File
@@ -74,7 +74,9 @@ public static class KeySelectionScreen
.Title("[bold]Select HDBUSERSTORE key:[/]")
.PageSize(15)
.HighlightStyle(Style.Parse("bold dodgerblue1"))
.UseConverter(name => displayMap.TryGetValue(name, out var label) ? label : name)
.UseConverter(name => displayMap.TryGetValue(name, out var label)
? Markup.Escape(label)
: Markup.Escape(name))
.AddChoices(choiceNames);
var selected = AnsiConsole.Prompt(prompt);