fix: surface database volume in docker view

This commit is contained in:
Codex
2026-05-04 13:51:31 +00:00
parent 2a03f6343c
commit a16fedd9e4
8 changed files with 169 additions and 29 deletions
@@ -281,6 +281,9 @@ function toVolume(row: Record<string, unknown>): DockerVolumeSummary {
driver: stringField(row, "Driver"),
scope: stringField(row, "Scope"),
mountpoint: stringField(row, "Mountpoint"),
labels: stringField(row, "Labels"),
size: stringField(row, "Size"),
status: stringField(row, "Status"),
};
}