@contentful/field-editor-reference 4.6.3 → 4.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/field-editor-reference.cjs.development.js +1 -1
- package/dist/field-editor-reference.cjs.development.js.map +1 -1
- package/dist/field-editor-reference.cjs.production.min.js +1 -1
- package/dist/field-editor-reference.cjs.production.min.js.map +1 -1
- package/dist/field-editor-reference.esm.js +1 -1
- package/dist/field-editor-reference.esm.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.6.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@4.6.3...@contentful/field-editor-reference@4.6.4) (2022-07-21)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- check the env alias for the field editor reference [ZEND-2488] ([#1194](https://github.com/contentful/field-editors/issues/1194)) ([0b8e1c7](https://github.com/contentful/field-editors/commit/0b8e1c7dc0ecc3644332fd89ef2daaff275655cb))
|
|
11
|
+
|
|
6
12
|
## [4.6.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@4.6.2...@contentful/field-editor-reference@4.6.3) (2022-07-19)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -1931,7 +1931,7 @@ var nonNilResources = function nonNilResources(map) {
|
|
|
1931
1931
|
|
|
1932
1932
|
function useEntitiesStore(props) {
|
|
1933
1933
|
var spaceId = props.sdk.ids.space;
|
|
1934
|
-
var environmentId = props.sdk.ids.environment;
|
|
1934
|
+
var environmentId = props.sdk.ids.environmentAlias || props.sdk.ids.environment;
|
|
1935
1935
|
|
|
1936
1936
|
var _React$useState = React.useState(function () {
|
|
1937
1937
|
return contentfulManagement.createClient({
|