Fix showing instanced name for filesystems in formats command.

This commit is contained in:
2022-12-17 19:26:51 +00:00
parent cf2ad7503b
commit b059ff8f98

View File

@@ -174,7 +174,7 @@ sealed class FormatsCommand : Command
if(verbose)
table.AddRow(fs.Id.ToString(), Markup.Escape(fs.Name));
else
table.AddRow(Markup.Escape(kvp.Value.Name));
table.AddRow(Markup.Escape(fs.Name));
}
AnsiConsole.Write(table);