fix(ui): apply consistent styling to custom & default block thumbnails (#11555)

Fixes #9744
This commit is contained in:
Patrik
2025-03-06 15:34:25 -05:00
committed by GitHub
parent b0da85dfea
commit 8378654fd0
9 changed files with 73 additions and 25 deletions

View File

@@ -901,7 +901,7 @@ export interface ContentBlock {
* via the `definition` "NoBlockname".
*/
export interface NoBlockname {
text: string;
text?: string | null;
id?: string | null;
blockName?: string | null;
blockType: 'noBlockname';
@@ -967,7 +967,7 @@ export interface LocalizedContentBlock {
* via the `definition` "localizedNoBlockname".
*/
export interface LocalizedNoBlockname {
text: string;
text?: string | null;
id?: string | null;
blockName?: string | null;
blockType: 'localizedNoBlockname';