We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf38308 commit 4885155Copy full SHA for 4885155
packages/block-library/src/image/deprecated.js
@@ -9,6 +9,7 @@ import classnames from 'classnames';
9
import {
10
RichText,
11
useBlockProps,
12
+ __experimentalGetElementClassName,
13
__experimentalGetBorderClassesAndStyles as getBorderClassesAndStyles,
14
} from '@wordpress/block-editor';
15
@@ -721,7 +722,9 @@ const v6 = {
721
722
) }
723
{ ! RichText.isEmpty( caption ) && (
724
<RichText.Content
- className={ getBorderClassesAndStyles( 'caption' ) }
725
+ className={ __experimentalGetElementClassName(
726
+ 'caption'
727
+ ) }
728
tagName="figcaption"
729
value={ caption }
730
/>
0 commit comments