diff options
author | Kim Alvefur <zash@zash.se> | 2021-11-10 21:31:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-11-10 21:31:41 +0100 |
commit | fd09aa9659816dd6ad52efe9969fcfe6698adaa4 (patch) | |
tree | 7364bb2de7f9f05afc8751af26fa7ca98236e47d /plugins | |
parent | 7f68cacb7989b7219c9b387406c003bbfc5445f1 (diff) | |
download | prosody-fd09aa9659816dd6ad52efe9969fcfe6698adaa4.tar.gz prosody-fd09aa9659816dd6ad52efe9969fcfe6698adaa4.zip |
mod_admin_shell: Specify a width for cert column
Avoids ellipsis
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_shell.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index f4b46bfb..d9633e83 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -726,6 +726,7 @@ local available_columns = { cert = { title = "Certificate"; key = "cert_identity_status"; + width = 13; mapper = function(cert_status, session) if cert_status ~= "" then return capitalize(cert_status); end if session.cert_chain_status == "Invalid" then |