Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to
### Changed

- ♻️(backend) reset collaboration connection in cascade for all children #2507
- ♿️(frontend) announce search loading state for screen readers #2526

### Fixed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ export const DocSearchContent = ({

useEffect(() => {
if (loading) {
if (search || isSearchNotMandatory) {
announce(t('Loading documents...'), 'polite');
}
return;
}

Expand Down
Loading