From 1d3d5391751b9a99c468f69d0ca76fefe4d81441 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Tue, 10 Aug 2021 13:15:00 +1000 Subject: [PATCH] feat(customers): CUST-1583 use label for country states to send non-translated name on submit --- CHANGELOG.md | 1 + assets/js/theme/common/state-country.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8dde60043..3f25212ed6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Draft +- Translation for states select field on account signup page. [#2105](https://github.com/bigcommerce/cornerstone/pull/2105) ## 6.0.0 (08-06-2021) - Translation mechanism for config.json has been updated. [#2089](https://github.com/bigcommerce/cornerstone/pull/2089) diff --git a/assets/js/theme/common/state-country.js b/assets/js/theme/common/state-country.js index 97fa5e6764..da9bc65080 100644 --- a/assets/js/theme/common/state-country.js +++ b/assets/js/theme/common/state-country.js @@ -90,7 +90,7 @@ function addOptions(statesArray, $selectElement, options) { if (options.useIdForStates) { container.push(``); } else { - container.push(``); + container.push(``); } });