Skip to content
Snippets Groups Projects
Commit 82c38d3c authored by Tom Robinson's avatar Tom Robinson Committed by GitHub
Browse files

Merge pull request #3066 from metabase/fix-attrs-undefined

Fix "Cannot read property 'attrs' of undefined" when icon is missing
parents fd2720c5 0dc1ee91
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,9 @@ export default class Icon extends Component {
render() {
const icon = loadIcon(this.props.name);
if (!icon) {
return null;
}
const props = { ...icon.attrs, ...this.props };
if (props.size != null) {
......@@ -31,9 +34,7 @@ export default class Icon extends Component {
props.height *= props.scale;
}
if (!icon) {
return <span className="hide" />;
} else if (icon.img) {
if (icon.img) {
return (<RetinaImage forceOriginalDimensions={false} {...props} src={icon.img} />);
} else if (icon.svg) {
return (<svg {...props} dangerouslySetInnerHTML={{__html: icon.svg}}></svg>);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment