diff --git a/packages/block-library/src/index.native.js b/packages/block-library/src/index.native.js index 0dffcb66269c1..413d2b6cd1d86 100644 --- a/packages/block-library/src/index.native.js +++ b/packages/block-library/src/index.native.js @@ -251,7 +251,7 @@ export const registerCoreBlocks = () => { pullquote, file, audio, - devOnly( reusableBlock ), + reusableBlock, search, devOnly( embed ), ].forEach( registerBlock ); diff --git a/packages/editor/src/components/provider/use-block-editor-settings.js b/packages/editor/src/components/provider/use-block-editor-settings.js index 64fb570b5d945..33e55182dc353 100644 --- a/packages/editor/src/components/provider/use-block-editor-settings.js +++ b/packages/editor/src/components/provider/use-block-editor-settings.js @@ -48,7 +48,7 @@ function useBlockEditorSettings( settings, hasTemplate ) { * Unbounded queries are not supported on native so as a workaround, we set per_page with the maximum value that native version can handle. * Related issue: https://github.com/wordpress-mobile/gutenberg-mobile/issues/2661 */ - { per_page: Platform.select( { web: -1, native: 10 } ) } + { per_page: Platform.select( { web: -1, native: 100 } ) } ), hasUploadPermissions: defaultTo( canUser( 'create', 'media' ), diff --git a/packages/react-native-editor/CHANGELOG.md b/packages/react-native-editor/CHANGELOG.md index f5c9073122082..682983cab2bf5 100644 --- a/packages/react-native-editor/CHANGELOG.md +++ b/packages/react-native-editor/CHANGELOG.md @@ -15,6 +15,7 @@ For each user feature we should also add a importance categorization label to i - [*] Image block: Add a "featured" banner. (Android only) [#30806] - [**] The media upload options of the Image, Video and Gallery block automatically opens when the respective block is inserted. [#29546] - [**] The media upload options of the File and Audio block automatically opens when the respective block is inserted. [#31025] +- [**] Reusable block: Enable preview mode. [#31154] ## 1.51.1