Skip to content

Commit da59896

Browse files
committed
fix(workflow-cli): volumes list format
1 parent f2cadfc commit da59896

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/volumes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ func printVolumes(d *DryccCmd, volumes api.Volumes) {
245245
table.Append([]string{volume.Name, volume.Owner, volume.Type, key, fmt.Sprintf("%v", volume.Path[key]), volume.Size})
246246
}
247247
} else {
248-
table.Append([]string{volume.Name, volume.Owner, "", "", volume.Size})
248+
table.Append([]string{volume.Name, volume.Owner, volume.Type, "", "", volume.Size})
249249
}
250250
}
251251
table.Render()

0 commit comments

Comments
 (0)