From f2c47232959536b878b1db64a8a5ffb63a1d7f1f Mon Sep 17 00:00:00 2001 From: Einav Weiss Keidar Date: Wed, 30 May 2018 18:12:02 +0300 Subject: webpack 4 upgrade Issue-ID: SDC-1388 Change-Id: I44d61491ef802187baa4beb3b4fc2c9f1e8405e5 Signed-off-by: Einav Weiss Keidar --- .../main/webapp/lib/ecomp/asdc/sequencer/components/icons/Icon.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dox-sequence-diagram-ui/src/main/webapp/lib/ecomp/asdc/sequencer/components/icons') diff --git a/dox-sequence-diagram-ui/src/main/webapp/lib/ecomp/asdc/sequencer/components/icons/Icon.jsx b/dox-sequence-diagram-ui/src/main/webapp/lib/ecomp/asdc/sequencer/components/icons/Icon.jsx index 51849676e4..71c9e69286 100644 --- a/dox-sequence-diagram-ui/src/main/webapp/lib/ecomp/asdc/sequencer/components/icons/Icon.jsx +++ b/dox-sequence-diagram-ui/src/main/webapp/lib/ecomp/asdc/sequencer/components/icons/Icon.jsx @@ -25,8 +25,8 @@ import PropTypes from 'prop-types'; */ const Icon = function Icon({ glyph, className }) { return ( - - + + ); }; @@ -34,7 +34,7 @@ const Icon = function Icon({ glyph, className }) { /** Declare properties. */ Icon.propTypes = { className: PropTypes.string, - glyph: PropTypes.string.isRequired + glyph: PropTypes.object.isRequired }; export default Icon; -- cgit