From d9444e457413634fc4219379abe0b30c4fc103e1 Mon Sep 17 00:00:00 2001 From: Jason Irish Date: Wed, 14 Aug 2024 16:31:13 -0500 Subject: [PATCH] BUGFIX render $Country as upper case (#30) --- .../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 %>