Skip to content

Commit

Permalink
Fixed #185
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Mar 6, 2024
1 parent 727147f commit 781f4fe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- CKEditor config edit pages now warn when switching the Config Options setting from JavaScript to JSON if the JavaScript code contains any functions. ([#152](https://github.com/craftcms/ckeditor/issues/152), [#180](https://github.com/craftcms/ckeditor/pull/180))
- Fixed a bug where the “Link to an asset” option was showing up when there weren’t any available volumes with URLs. ([#179](https://github.com/craftcms/ckeditor/issues/179))
- Fixed a bug where an error occurred when editing an unsaved element with a CKEditor field. ([#181](https://github.com/craftcms/ckeditor/issues/181))
- Fixed a bug where “New entry” menus weren’t listing entry types in the field-defined order. ([#185](https://github.com/craftcms/ckeditor/issues/185))

## 4.0.0-beta.7 - 2024-02-21

Expand Down
1 change: 0 additions & 1 deletion src/Field.php
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,6 @@ private function _getEntryTypeOptions(): array
],
$this->getEntryTypes(),
);
usort($entryTypeOptions, fn(array $a, array $b) => $a['label'] <=> $b['label']);

return $entryTypeOptions;
}
Expand Down

0 comments on commit 781f4fe

Please sign in to comment.