This commit is contained in:
Knut Sveidqvist 2024-05-14 13:00:45 +02:00
parent dab26df9c4
commit 8d815f878c
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ const populateBlockDatabase = (_blockList: Block[] | Block[][], parent: Block):
const children = [];
for (const block of blockList) {
if (block.label) {
block.label = sanitizeText(block.label);
block.label = sanitizeText(block.label);
}
if (block.type === 'classDef') {
addStyleClass(block.id, block.css);