mod_admin_shell: Make Role and Affiliation columns the same width for aesthetics

The length of the title "Affiliation" made them both close enough that
it looked off.
This commit is contained in:
Kim Alvefur 2023-01-29 18:57:28 +01:00
parent 6e120ad485
commit 5c676bab58

View file

@ -1402,7 +1402,7 @@ function def_env.muc:occupants(room_jid, filter)
local print = self.session.print;
local row = format_table({
{ title = "Role"; width = #"participant"; key = "role" }; -- longest role name
{ title = "Role"; width = 12; key = "role" }; -- longest role name
{ title = "JID"; width = "75%"; key = "bare_jid" };
{ title = "Nickname"; width = "25%"; key = "nick"; mapper = jid_resource };
}, self.session.width);
@ -1434,7 +1434,7 @@ function def_env.muc:affiliations(room_jid, filter)
local print = self.session.print;
local row = format_table({
{ title = "Affiliation"; width = #"outcast" }; -- longest affiliation name
{ title = "Affiliation"; width = 12 }; -- longest affiliation name
{ title = "JID"; width = "75%" };
{ title = "Nickname"; width = "25%"; key = "reserved_nickname" };
}, self.session.width);