From dc23ef9df77d04e30b566375d1f28dcfb335d4be Mon Sep 17 00:00:00 2001 From: aydreeihn <adriane@enhancesoft.com> Date: Tue, 6 Mar 2018 14:45:36 -0600 Subject: [PATCH] issue/ticket-preview-custom-fields prevent label wrapping --- include/staff/templates/ticket-preview.tmpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/staff/templates/ticket-preview.tmpl.php b/include/staff/templates/ticket-preview.tmpl.php index 48bcdbfb4..b36de6479 100644 --- a/include/staff/templates/ticket-preview.tmpl.php +++ b/include/staff/templates/ticket-preview.tmpl.php @@ -140,7 +140,7 @@ foreach (DynamicFormEntry::forTicket($ticket->getId()) as $form) { foreach ($displayed as $stuff) { list($label, $v) = $stuff; echo '<tr>'; - echo '<th width="20%">'.Format::htmlchars($label).':</th>'; + echo '<th width="20%" style="white-space: nowrap;">'.Format::htmlchars($label).':</th>'; echo '<td>'.$v.'</td>'; echo '</tr>'; } -- GitLab