From b3fb9ec6d0c9cc3d474ff6ddbd019ac76203a550 Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Wed, 9 Oct 2024 14:19:50 +1000 Subject: [PATCH] DOC-2513: Add known issues to 7.4 release notes. --- modules/ROOT/nav.adoc | 1 + modules/ROOT/pages/7.4-release-notes.adoc | 41 ++++++++++++++++++++++- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/nav.adoc b/modules/ROOT/nav.adoc index ca3756798..f5e1016a1 100644 --- a/modules/ROOT/nav.adoc +++ b/modules/ROOT/nav.adoc @@ -415,6 +415,7 @@ **** xref:7.4-release-notes.adoc#improvements[Improvements] **** xref:7.4-release-notes.adoc#additions[Additions] **** xref:7.4-release-notes.adoc#bug-fixes[Bug fixes] +**** xref:7.4-release-notes.adoc#known-issues[Known issues] *** {productname} 7.3 **** xref:7.3-release-notes.adoc#overview[Overview] **** xref:7.3-release-notes.adoc#accompanying-premium-plugin-changes[Accompanying Premium plugin changes] diff --git a/modules/ROOT/pages/7.4-release-notes.adoc b/modules/ROOT/pages/7.4-release-notes.adoc index 46d126c8d..f5881714c 100644 --- a/modules/ROOT/pages/7.4-release-notes.adoc +++ b/modules/ROOT/pages/7.4-release-notes.adoc @@ -19,6 +19,7 @@ These release notes provide an overview of the changes for {productname} {releas * xref:improvements[Improvements] * xref:additions[Additions] * xref:bug-fixes[Bug fixes] +* xref:known-issues[Known issues] [[accompanying-premium-plugin-changes]] @@ -338,4 +339,42 @@ These improvements ensure more consistent and correctly formatted text output wh Previously in {productname}, the resize handle in the editor's status bar was positioned relative to other elements. Consequently, if these elements were removed, the resize handle would incorrectly appear in the left corner of the editor's status bar. -In {productname} {release-version}, this issue has been resolved by adjusting the CSS. The resize handle is now consistently placed in the right corner of the status bar, regardless of the presence of other elements. This ensures that the resize handle is always positioned correctly where users expect it to be. \ No newline at end of file +In {productname} {release-version}, this issue has been resolved by adjusting the CSS. The resize handle is now consistently placed in the right corner of the status bar, regardless of the presence of other elements. This ensures that the resize handle is always positioned correctly where users expect it to be. + +[[known-issues]] + +== Known issues + +=== Editor Focus after Deleting a Comment +// #TINY-11293 + +When deleting a comment from the Comments sidebar, the focus shifts from the comments sidebar to the editor content area, rather than switching to the "Add comment..." button in the conversation sidebar as expected. + +This behavior differs from the current stable version, where the focus is correctly returned to the "Add comment..." textbox. + +**Status**: Currently under investigation. + +=== Comments Not Functional with Empty tinycomments_author and tinycomments_author_name +// #TINY-11323 + +Comment functionality becomes non-operational when `tinycomments_author` and `tinycomments_author_name` are configured as empty strings `+''+`. + +.Example of affected configuration: +[source, js] +---- +tinycomments_author: '', +tinycomments_author_name: '', +---- + +Previously, instead of assigning default user/author values as in `7-stable` (7.3), the latest release {release-version} disables all comment features when these fields are empty. + +**Status**: Currently under investigation. + +=== Comment card not removed after deleting content +// #TINY-11366 + +Currently, after deleting content that has related comments, the corresponding comment card still exists and becomes stale within the Comments sidebar. + +This behavior is inconsistent with the expected behavior, where the comment card should be removed automatically after deleting the content. + +**Status**: Currently under investigation. \ No newline at end of file