Compare commits

...

1 Commits

Author SHA1 Message Date
Knut Sveidqvist
8d815f878c Lint fix 2024-05-14 13:00:45 +02:00

View File

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