mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.human.io: Pass expected width to mapper function
In order to allow it to adjust its output to available space, apply its own ellipsis method or other compacting method.
This commit is contained in:
parent
44689ccfd4
commit
8b33e79fdb
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ local function new_table(col_specs, max_width)
|
|||
local width = widths[i];
|
||||
local v = row[not titles and column.key or i];
|
||||
if not titles and column.mapper then
|
||||
v = column.mapper(v, row);
|
||||
v = column.mapper(v, row, width);
|
||||
end
|
||||
if v == nil then
|
||||
v = column.default or "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue