We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 330324f commit 84ec231Copy full SHA for 84ec231
src/wp-chess/save.js
@@ -19,7 +19,11 @@ import { __ } from '@wordpress/i18n';
19
*/
20
export default function save( { attributes } ) {
21
return (
22
- <p class="wp-chess-board fen-position-board" data-fen={ attributes.startFenPosition } { ...useBlockProps.save() }>
+ <p
23
+ className="wp-chess-board fen-position-board"
24
+ data-fen={ attributes.startFenPosition }
25
+ { ...useBlockProps.save() }
26
+ >
27
{ __( 'Loading', 'wp-chess' ) }
28
</p>
29
);
0 commit comments