Use modern ES syntax rather than .call (#29368)
This commit is contained in:
@@ -80,7 +80,7 @@ export default class MediaContainer extends PureComponent {
|
||||
return (
|
||||
<IntlProvider>
|
||||
<>
|
||||
{[].map.call(components, (component, i) => {
|
||||
{Array.from(components).map((component, i) => {
|
||||
const componentName = component.getAttribute('data-component');
|
||||
const Component = MEDIA_COMPONENTS[componentName];
|
||||
const { media, card, poll, hashtag, ...props } = JSON.parse(component.getAttribute('data-props'));
|
||||
|
||||
Reference in New Issue
Block a user