From 977f3e561ef954022be3c632f6db530568af477e Mon Sep 17 00:00:00 2001 From: Dmitriy Korniychuk Date: Mon, 17 Jun 2019 16:02:37 +0300 Subject: [PATCH] ... --- app/components/Icon/Icon.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;