# HG changeset patch # User Kim Alvefur # Date 1698319768 -7200 # Node ID 1e2d65403867fbfe42a1bdae40385de442faecee # Parent 8b3da19b0aeafa6463083e55e31f5de5d60e9769 mod_admin_shell: Make 'Role' column dynamically sized Some of the new roles don't quite fit nicely into 4 characters (excluding ellipsis). Given the ability to dynamically add additional roles from the config and possibly from modules, it seems better to just make it a relative size since we can't know how long they will be. diff -r 8b3da19b0aea -r 1e2d65403867 plugins/mod_admin_shell.lua --- a/plugins/mod_admin_shell.lua Tue Oct 24 09:24:01 2023 +0100 +++ b/plugins/mod_admin_shell.lua Thu Oct 26 13:29:28 2023 +0200 @@ -1018,7 +1018,7 @@ role = { title = "Role"; description = "Session role with 'prosody:' prefix removed"; - width = #"admin"; + width = "1p"; key = "role"; mapper = function(role) local name = role and role.name;