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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 1.7.0
* Fix: Issue with rich content replacement (HTML bearing string).
* Feat: On Modal open, show items found for Highlighted text.
* Fix: Console warnings & errors.

## 1.6.0
* Feat: Add search and replace functionality for __Table Block__.
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ Want to add your personal touch? All of our documentation can be found [here](ht
= 1.7.0 =
* Fix: Issue with rich content replacement (HTML bearing string).
* Feat: On Modal open, show items found for Highlighted text.
* Fix: Console warnings & errors.

= 1.6.0 =
* Feat: Add search and replace functionality for __Table Block__.
Expand Down
2 changes: 2 additions & 0 deletions src/core/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -379,13 +379,15 @@ const SearchReplaceForBlockEditor = (): JSX.Element => {
onChange={ ( value ) => setSearchInput( value ) }
placeholder="Lorem ipsum..."
__nextHasNoMarginBottom
__next40pxDefaultSize
/>
<TextControl
type="text"
label={ __( 'Replace' ) }
value={ replaceInput }
onChange={ ( value ) => setReplaceInput( value ) }
__nextHasNoMarginBottom
__next40pxDefaultSize
/>
</div>

Expand Down