diff --git a/app/components/Icon/Icon.jsx b/app/components/Icon/Icon.jsx index 5c20cb645c..af60e5b284 100644 --- a/app/components/Icon/Icon.jsx +++ b/app/components/Icon/Icon.jsx @@ -21,7 +21,7 @@ class Icon extends React.Component { let classes = "icon "; if (this.props.name !== "warning") { // fixme remove warning, otherwise color is being overwritten. should be handled by adjusting the CSS instead - classes = this.props.name; + classes = classes + this.props.name; } if (this.props.size) { classes += " icon-" + this.props.size;