Can compress raw files

This commit is contained in:
2025-05-29 15:33:32 +02:00
parent 9822c5a72a
commit 42f22c110c
2 changed files with 48 additions and 0 deletions

View File

@ -226,6 +226,15 @@ function DiskImageList(p: {
field: "format",
headerName: "Format",
flex: 1,
renderCell(params) {
let content = params.row.format;
if (params.row.format === "Raw") {
content += params.row.is_sparse ? " (Sparse)" : " (Fixed)";
}
return content;
},
},
{
field: "file_size",