diff --git a/packages/block-library/src/index.native.js b/packages/block-library/src/index.native.js index 6f6c5049eb7662..ea4eda6549b714 100644 --- a/packages/block-library/src/index.native.js +++ b/packages/block-library/src/index.native.js @@ -160,7 +160,7 @@ export const registerCoreBlocks = () => { latestPosts, devOnly( verse ), cover, - devOnly( pullquote ), + pullquote, ].forEach( registerBlock ); setDefaultBlockName( paragraph.name ); diff --git a/packages/block-library/src/pullquote/edit.js b/packages/block-library/src/pullquote/edit.js index 5a7dae5a5f8451..57454c705fc71e 100644 --- a/packages/block-library/src/pullquote/edit.js +++ b/packages/block-library/src/pullquote/edit.js @@ -8,7 +8,7 @@ import { includes } from 'lodash'; * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { Component } from '@wordpress/element'; +import { Component, Platform } from '@wordpress/element'; import { RichText, ContrastChecker, @@ -169,33 +169,35 @@ class PullQuoteEdit extends Component { ) } - - - { isSolidColorStyle && ( - - ) } - - + { Platform.OS === 'web' && ( + + + { isSolidColorStyle && ( + + ) } + + + ) } ); }