src/bin/proxmox-backup-client.rs - status: do not print header

This commit is contained in:
Dietmar Maurer 2020-02-27 11:31:05 +01:00
parent f24fc1166b
commit be2425ff85

View File

@ -1486,7 +1486,7 @@ async fn status(param: Value) -> Result<Value, Error> {
let options = TableFormatOptions::new()
.noborder(false)
.noheader(false)
.noheader(true)
.column(ColumnConfig::new("total"))
.column(ColumnConfig::new("used").renderer(render_total_percentage))
.column(ColumnConfig::new("avail").renderer(render_total_percentage));