mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_admin_shell: Make default column width 1 part
These gets used for usernames, resources and other random session fields that don't have a column definition in `available_columns`
This commit is contained in:
parent
65dffa88a8
commit
c490579025
1 changed files with 1 additions and 1 deletions
|
@ -999,7 +999,7 @@ local function get_colspec(colspec, default)
|
|||
local columns = {};
|
||||
for i, col in pairs(colspec or default) do
|
||||
if type(col) == "string" then
|
||||
columns[i] = available_columns[col] or { title = capitalize(col); width = 20; key = col };
|
||||
columns[i] = available_columns[col] or { title = capitalize(col); width = "1p"; key = col };
|
||||
elseif type(col) ~= "table" then
|
||||
return false, ("argument %d: expected string|table but got %s"):format(i, type(col));
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue