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 @@
# Changelog

## 1.8.0
* Feat: Add Search & Replace feature for table head, foot & caption.
* Tested up to WP 6.8.

## 1.7.0
* Fix: Issue with rich content replacement (HTML bearing string).
* Feat: On Modal open, show items found for Highlighted text.
Expand Down
3 changes: 3 additions & 0 deletions src/core/filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ addAction(
break;

case 'core/table':
replaceBlockAttribute( args, 'head' );
replaceBlockAttribute( args, 'body' );
replaceBlockAttribute( args, 'foot' );
replaceBlockAttribute( args, 'caption' );
break;

default:
Expand Down