diff --git a/CHANGELOG.md b/CHANGELOG.md index 4615c66f8..20944ee79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Fixed +- Block selector not working after a locale change. + +### Added +- Block selector status(wait). + +### Changed +- Hides query strings from site editor top bar. + ## [4.40.0] - 2021-04-13 ### Fixed diff --git a/manifest.json b/manifest.json index 9c2b4966b..a06d3f1fb 100644 --- a/manifest.json +++ b/manifest.json @@ -26,9 +26,7 @@ }, "mustUpdateAt": "2018-09-05", "categories": [], - "registries": [ - "smartcheckout" - ], + "registries": ["smartcheckout"], "settingsSchema": {}, "scripts": { "postreleasy": "vtex publish -r vtex --verbose" diff --git a/react/components/EditorContainer/StoreIframe.tsx b/react/components/EditorContainer/StoreIframe.tsx index fed233f5c..0cbdf2b94 100644 --- a/react/components/EditorContainer/StoreIframe.tsx +++ b/react/components/EditorContainer/StoreIframe.tsx @@ -36,7 +36,9 @@ const StoreIframe: React.FunctionComponent = ({ path }) => { src += `${getJoiner(src)}__bindingAddress=${binding.canonicalBaseAddress}` } - src += `${getJoiner(src)}__siteEditor` + if (!src.includes('__siteEditor')) { + src += `${getJoiner(src)}__siteEditor=true` + } return (