diff options
-rw-r--r-- | util/human/io.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/human/io.lua b/util/human/io.lua index a175f5af..f8868cc6 100644 --- a/util/human/io.lua +++ b/util/human/io.lua @@ -136,7 +136,7 @@ local function new_table(col_specs, max_width) v = column.mapper(v, row); end if v == nil then - v = ""; + v = column.default or ""; else v = tostring(v); end |