diff --git a/src/renderers/dom/shared/SVGDOMPropertyConfig.js b/src/renderers/dom/shared/SVGDOMPropertyConfig.js index 0711446e9a..15f524e80b 100644 --- a/src/renderers/dom/shared/SVGDOMPropertyConfig.js +++ b/src/renderers/dom/shared/SVGDOMPropertyConfig.js @@ -290,7 +290,7 @@ var SVGDOMPropertyConfig = { DOMAttributeNames: {}, }; -Object.keys(ATTRS).map((key) => { +Object.keys(ATTRS).forEach((key) => { SVGDOMPropertyConfig.Properties[key] = 0; if (ATTRS[key]) { SVGDOMPropertyConfig.DOMAttributeNames[key] = ATTRS[key];