diff --git a/pkg/table/row.go b/pkg/table/row.go index 9e62a42..543bca2 100644 --- a/pkg/table/row.go +++ b/pkg/table/row.go @@ -99,6 +99,9 @@ func renderColumn(value any) string { dur := time.Since(value) return duration.HumanDuration(dur) default: + if value == nil { + return "" + } return fmt.Sprint(value) } }