add missing semicolon

This commit is contained in:
Michael Maier 2021-11-28 12:44:22 +01:00
parent b6d3ac8e32
commit c2db1d4d44
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ export const addVertex = function (_id, text, type, style, classes, dir, props =
if (typeof dir !== 'undefined') {
vertices[id].dir = dir;
}
vertices[id].props = props
vertices[id].props = props;
};
/**