From fd36312abd1d45954b951cd4d28cb5bbc839e1b7 Mon Sep 17 00:00:00 2001 From: fusionate Date: Thu, 18 Dec 2025 15:16:45 -0700 Subject: [PATCH] Voicemails - List: Adjust column widths. --- app/voicemails/voicemails.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/voicemails/voicemails.php b/app/voicemails/voicemails.php index 0776f37e41..561bc83d2f 100644 --- a/app/voicemails/voicemails.php +++ b/app/voicemails/voicemails.php @@ -302,17 +302,17 @@ if ($show == "all" && permission_exists('voicemail_all')) { echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, $param, "class='shrink'"); } - echo th_order_by('voicemail_id', $text['label-voicemail_id'], $order_by, $order); + echo th_order_by('voicemail_id', $text['label-voicemail_id'], $order_by, $order, null, "style='width: 1%;'"); echo th_order_by('voicemail_mail_to', $text['label-voicemail_mail_to'], $order_by, $order, null, "class='hide-sm-dn'"); - echo th_order_by('voicemail_file', $text['label-voicemail_file_attached'], $order_by, $order, null, "class='center hide-md-dn'"); - echo th_order_by('voicemail_local_after_email', $text['label-voicemail_local_after_email'], $order_by, $order, null, "class='center hide-md-dn'"); + echo th_order_by('voicemail_file', $text['label-voicemail_file_attached'], $order_by, $order, null, "class='center hide-md-dn' style='width: 1%;'"); + echo th_order_by('voicemail_local_after_email', $text['label-voicemail_local_after_email'], $order_by, $order, null, "class='center hide-md-dn' style='width: 1%;'"); if (permission_exists('voicemail_transcription_enabled') && $settings->get('transcribe', 'enabled', false) === true) { - echo th_order_by('voicemail_transcription_enabled', $text['label-voicemail_transcription_enabled'], $order_by, $order, null, "class='center'"); + echo th_order_by('voicemail_transcription_enabled', $text['label-voicemail_transcription_enabled'], $order_by, $order, null, "class='center' style='width: 1%;'"); } if (permission_exists('voicemail_message_view') || permission_exists('voicemail_greeting_view')) { - echo "".$text['label-tools']."\n"; + echo "".$text['label-tools']."\n"; } - echo th_order_by('voicemail_enabled', $text['label-voicemail_enabled'], $order_by, $order, null, "class='center'"); + echo th_order_by('voicemail_enabled', $text['label-voicemail_enabled'], $order_by, $order, null, "class='center' style='width: 1%;'"); echo th_order_by('voicemail_description', $text['label-voicemail_description'], $order_by, $order, null, "class='hide-sm-dn'"); if (permission_exists('voicemail_edit') && $list_row_edit_button) { echo "  \n"; @@ -354,7 +354,7 @@ } echo " \n"; - echo " ".escape($row['voicemail_mail_to'])." \n"; + echo " ".escape($row['voicemail_mail_to'])." \n"; echo " ".($row['voicemail_file'] == 'attach' ? $text['label-true'] : $text['label-false'])."\n"; echo " ".ucwords(escape($row['voicemail_local_after_email']))." \n"; if (permission_exists('voicemail_transcription_enabled') && $settings->get('transcribe', 'enabled', false) === true) {