Skip to content

Commit f0b7ab0

Browse files
committed
Fixing removed image fix
1 parent 3a9779d commit f0b7ab0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/image.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Image extends Base {
1212
display: this.props.display || ""
1313
};
1414
return (
15-
<img src={this.props.src} style={[styles, this.context.styles.components.image, this.getStyles()]} />
15+
<img src={this.props.src} style={[this.context.styles.components.image, this.getStyles(), styles]} />
1616
);
1717
}
1818
}

0 commit comments

Comments
 (0)