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 fd70889 commit 2c1110bCopy full SHA for 2c1110b
2 files changed
CUSTOM_MARKER_FUNCTIONS.md custom_marker_functions.mdCUSTOM_MARKER_FUNCTIONS.md renamed to custom_marker_functions.md
src/components/drawing/index.js
@@ -331,6 +331,8 @@ drawing.symbolList = [];
331
332
Object.keys(SYMBOLDEFS).forEach(function (k) {
333
var symDef = SYMBOLDEFS[k];
334
+ // Skip non-symbol exports (like 'align' function)
335
+ if (typeof symDef !== 'object' || symDef.n === undefined) return;
336
var n = symDef.n;
337
drawing.symbolList.push(
338
n,
0 commit comments