Skip to content

Commit 4885155

Browse files
Mamadukamburridge
authored andcommitted
Image: Use the correct method for caption class in recent deprecation (#52853)
1 parent bf38308 commit 4885155

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/block-library/src/image/deprecated.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import classnames from 'classnames';
99
import {
1010
RichText,
1111
useBlockProps,
12+
__experimentalGetElementClassName,
1213
__experimentalGetBorderClassesAndStyles as getBorderClassesAndStyles,
1314
} from '@wordpress/block-editor';
1415

@@ -721,7 +722,9 @@ const v6 = {
721722
) }
722723
{ ! RichText.isEmpty( caption ) && (
723724
<RichText.Content
724-
className={ getBorderClassesAndStyles( 'caption' ) }
725+
className={ __experimentalGetElementClassName(
726+
'caption'
727+
) }
725728
tagName="figcaption"
726729
value={ caption }
727730
/>

0 commit comments

Comments
 (0)