From b0ffa119b36cd35e6ac1952efafd70f72492d0e6 Mon Sep 17 00:00:00 2001 From: knoxfighter Date: Sat, 11 Aug 2018 18:28:05 +0200 Subject: [PATCH] fixed not showing fontawesome icons --- ui/App/components/FontAwesomeIcon.jsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ui/App/components/FontAwesomeIcon.jsx b/ui/App/components/FontAwesomeIcon.jsx index c7e77e0..ea11be9 100644 --- a/ui/App/components/FontAwesomeIcon.jsx +++ b/ui/App/components/FontAwesomeIcon.jsx @@ -5,18 +5,15 @@ import classNames from 'classnames'; class FontAwesomeIcon extends React.Component { constructor(props) { super(props); - - console.log("huhu"); } render() { let classes = classNames(this.props.prefix, { "fas": !this.props.prefix, }, 'fa-' + this.props.icon, this.props.className); - console.log(classes); return ( - + ); } }