Check for htmlLabels in the flowchart config

This commit is contained in:
Anthony Juckel
2025-08-14 14:54:52 -05:00
parent 4d76af679b
commit ebb77578e8

View File

@@ -14,7 +14,7 @@ export const labelHelper = async <T extends SVGGraphicsElement>(
_classes?: string
) => {
let cssClasses;
const useHtmlLabels = node.useHtmlLabels || evaluate(getConfig()?.htmlLabels);
const useHtmlLabels = node.useHtmlLabels || evaluate(getConfig()?.flowchart?.htmlLabels);
if (!_classes) {
cssClasses = 'node default';
} else {