From 6356da68a93dd1517c2f5b8f08e08bdfe26b8e80 Mon Sep 17 00:00:00 2001 From: Jason Irish Date: Wed, 14 Aug 2024 16:24:23 -0500 Subject: [PATCH] BUGFIX render $Country as upper case --- .../Elements/CustomerService/Elements/ElementCustomerService.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/Dynamic/Elements/CustomerService/Elements/ElementCustomerService.ss b/templates/Dynamic/Elements/CustomerService/Elements/ElementCustomerService.ss index abd360c..147d2eb 100644 --- a/templates/Dynamic/Elements/CustomerService/Elements/ElementCustomerService.ss +++ b/templates/Dynamic/Elements/CustomerService/Elements/ElementCustomerService.ss @@ -22,7 +22,7 @@ <% if $City || $State || $PostalCode %>
<% end_if %> - <% if $Country %>$Country<% end_if %> + <% if $Country %>$Country.UpperCase<% end_if %>

<% end_if %>