diff --git a/CHANGELOG.md b/CHANGELOG.md index c34b37f1b..02be51710 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Changed + +- Hides query strings from the site editor top bar. + ## [4.37.0] - 2021-02-09 - Adds support for multi binding for redirect CSV managment @@ -39,11 +43,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Site editor flag in the iframe URL. ## [4.32.0] - 2021-01-21 + ### Added -- Adds binding selector for CMS Pages + +- Adds binding selector for CMS Pages ## [4.31.1] - 2021-01-20 + ### Fixed + - Sending blockId in `Form index` component even when is not changed to prevent unexpected behaviors ## [4.31.0] - 2021-01-13 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 (