@contentful/field-editor-reference 4.0.3 → 4.0.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.
@@ -328,6 +328,9 @@ var CreateEntryLinkButton = function CreateEntryLinkButton(_ref) {
328
328
  dropdownSettings = _ref.dropdownSettings,
329
329
  _ref$disabled = _ref.disabled,
330
330
  disabled = _ref$disabled === void 0 ? false : _ref$disabled;
331
+ contentTypes = contentTypes.sort(function (a, b) {
332
+ return a.name.localeCompare(b.name);
333
+ });
331
334
  var suggestedContentType = contentTypes.find(function (ct) {
332
335
  return ct.sys.id === suggestedContentTypeId;
333
336
  });