Skip to content

Commit

Permalink
Issue #3669: Use wbr replacement for Queues and Services in both Agen…
Browse files Browse the repository at this point in the history
…t and Customer ticket info.
  • Loading branch information
stefanhaerter authored and svenoe committed Aug 5, 2024
1 parent 189c9cc commit b7f51bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

[% RenderBlockStart("Service") %]
<label>[% Translate("Service") | html %]:</label>
<p class="Value" title="[% Translate(Data.Service) | html %]">[% Translate(Data.Service) | html %]</p>
<p class="Value" title="[% Translate(Data.Service) | html %]">[% Translate(Data.Service) | html | replace('::', '<wbr>::<wbr>') %]</p>
<div class="Clear"></div>
[% RenderBlockEnd("Service") %]
[% RenderBlockStart("SLA") %]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<p class='ooo12'><span class='ooo12g'>[% Translate('Type') | html %]:</span> [% Data.Type | html %]</p>
[% RenderBlockEnd("Type") %]
[% RenderBlockStart("Service") %]
<p class='ooo12'><span class='ooo12g'>[% Translate('Service') | html %]:</span> [% Translate(Data.Service) | html %]</p>
<p class='ooo12'><span class='ooo12g'>[% Translate('Service') | html %]:</span> [% Translate(Data.Service) | html | replace('::', '<wbr>::<wbr>') %]</p>
[% RenderBlockEnd("Service") %]
[% RenderBlockStart("SLA") %]
<p class='ooo12'><span class='ooo12g'>[% Translate('SLA') | html %]:</span> [% Translate(Data.SLA) | html %]</p>
Expand All @@ -39,7 +39,7 @@
<p class='ooo12'><span class='ooo12g'>[% Translate('Priority') | html %]:</span> [% Translate(Data.Priority) | html %]</p>
[% RenderBlockEnd("Priority") %]
[% RenderBlockStart("Queue") %]
<p class='ooo12'><span class='ooo12g'>[% Translate('Queue') | html %]:</span> [% Translate(Data.Queue) | html %]</p>
<p class='ooo12'><span class='ooo12g'>[% Translate('Queue') | html %]:</span> [% Translate(Data.Queue) | html | replace('::', '<wbr>::<wbr>') %]</p>
[% RenderBlockEnd("Queue") %]
[% RenderBlockStart("TicketTimeUnits") %]
<p class='ooo12'><span class='ooo12g'>[% Translate('Accounted time') | html %]:</span> [% Data.TicketTimeUnits | html %]</p>
Expand Down

0 comments on commit b7f51bc

Please sign in to comment.