Added linting

This commit is contained in:
Vincent Lam
2023-10-24 16:52:44 -07:00
committed by Vincent Lam
parent 55fac29b3e
commit 6d2904cff1
2 changed files with 4 additions and 6 deletions

View File

@@ -758,7 +758,7 @@ const insertEdge = function (edgesEl, edge, edgeData, diagObj, parentLookupDb, i
.attr('class', 'path ' + edgeData.classes)
.attr('fill', 'none');
Object.entries(edgeData).forEach(([key, value]) => {
if (key !== 'classes'){
if (key !== 'classes') {
edgePath.attr(key, value);
}
});