Skip to content

Commit df2f1a3

Browse files
committed
[fixed] Don't clone children in ResponsiveEmbed
1 parent 60b8af2 commit df2f1a3

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

src/ResponsiveEmbed.js

+5-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import warning from 'warning';
55

66
class ResponsiveEmbed extends React.Component {
77
render() {
8-
const { bsClass, className, a16by9, a4by3, ...props } = this.props;
8+
const { bsClass, className, a16by9, a4by3, children, ...props } = this.props;
99
warning(!(!a16by9 && !a4by3), '`a16by9` or `a4by3` attribute must be set.');
1010
warning(!(a16by9 && a4by3), 'Either `a16by9` or `a4by3` attribute can be set. Not both.');
1111

@@ -16,13 +16,10 @@ class ResponsiveEmbed extends React.Component {
1616

1717
return (
1818
<div className={classNames(bsClass, aspectRatio)}>
19-
{cloneElement(
20-
this.props.children,
21-
{
22-
...props,
23-
className: classNames(className, 'embed-responsive-item')
24-
}
25-
)}
19+
{cloneElement(children, {
20+
...props,
21+
className: classNames(className, 'embed-responsive-item')
22+
})}
2623
</div>
2724
);
2825
}

0 commit comments

Comments
 (0)