Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes for CKEditor for Craft CMS

## Unreleased

- Fixed a bug where `&nbps;` briefly appeared below the editor on page load, if the “Show word count” setting was enabled. ([#507](https://github.com/craftcms/ckeditor/issues/507))

## 3.15.0 - 2025-11-19

- Statically-rendered CKEditor fields are now shown in read-only mode. ([#466](https://github.com/craftcms/ckeditor/pull/466))
Expand Down
2 changes: 1 addition & 1 deletion src/Field.php
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ private function _inputHtml(mixed $value, ?ElementInterface $element = null, boo
]);

if ($this->showWordCount) {
$html .= Html::tag('div', '&nbps;', [
$html .= Html::tag('div', ' ', [
'id' => $wordCountId,
'class' => ['ck-word-count', 'light', 'smalltext'],
]);
Expand Down