@contentful/field-editor-reference 4.3.2 → 4.3.3

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 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.3.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@4.3.2...@contentful/field-editor-reference@4.3.3) (2022-05-03)
7
+
8
+ ### Bug Fixes
9
+
10
+ - avoid disabling button if no creatable content type ([#1132](https://github.com/contentful/field-editors/issues/1132)) ([72c7b97](https://github.com/contentful/field-editors/commit/72c7b97019d4a1915fd295592f0724f7be08d424))
11
+
6
12
  ## [4.3.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@4.3.1...@contentful/field-editor-reference@4.3.2) (2022-04-29)
7
13
 
8
14
  ### Bug Fixes
@@ -362,7 +362,7 @@ var CreateEntryLinkButton = function CreateEntryLinkButton(_ref) {
362
362
  endIcon: hasDropdown ? React__default.createElement(f36Icons.ChevronDownIcon, null) : undefined,
363
363
  variant: "secondary",
364
364
  className: styles.action,
365
- isDisabled: disabled || isSelecting || contentTypes && contentTypes.length === 0,
365
+ isDisabled: disabled || isSelecting,
366
366
  startIcon: isSelecting ? undefined : plusIcon,
367
367
  size: "small",
368
368
  testId: "create-entry-link-button",