Skip to content

Commit

Permalink
Merge pull request #44 from DHowett/escapa-1
Browse files Browse the repository at this point in the history
list: escape markup in app table
  • Loading branch information
azchohfi authored Jun 5, 2024
2 parents 0fc7ae0 + dfde0e8 commit 3e179d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MSStore.CLI/Commands/Apps/ListCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ await AnsiConsole.Status().StartAsync("Retrieving Managed Applications", async c
{
table.AddRow(
i.ToString(CultureInfo.InvariantCulture),
$"[bold u]{p.Id}[/]",
$"[bold u]{p.PrimaryName}[/]",
$"[bold u]{p.PackageIdentityName}[/]");
$"[bold u]{p.Id.EscapeMarkup()}[/]",
$"[bold u]{p.PrimaryName.EscapeMarkup()}[/]",
$"[bold u]{p.PackageIdentityName.EscapeMarkup()}[/]");
i++;
}

Expand Down

0 comments on commit 3e179d6

Please sign in to comment.