mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.human.io: Pass the whole column definition to mapper function
I forget why I wanted this, but it may allow doing things like pull settings from the column, especially when the mapper function is reused among many columns.
This commit is contained in:
parent
41be222478
commit
08c0557093
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, width);
|
||||
v = column.mapper(v, row, width, column);
|
||||
end
|
||||
if v == nil then
|
||||
v = column.default or "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue