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 e0871ae commit a60f193Copy full SHA for a60f193
assets/src/block-editor/blocks/card/components/card-action-button.js
@@ -91,7 +91,10 @@ const CardActionButton = ( {
91
className="mdc-button mdc-card__action mdc-card__action--button"
92
>
93
<div className="mdc-button__ripple"></div>
94
- <span className="mdc-button__label">{ label }</span>
+ <span
95
+ className="mdc-button__label"
96
+ dangerouslySetInnerHTML={ { __html: label } }
97
+ ></span>
98
</a>
99
) }
100
{ isFocused && isEditMode && (
0 commit comments