Do not mix immutablejs with plain array functions

This commit is contained in:
Roland Schilter
2017-08-01 10:37:07 +02:00
parent 283edfed12
commit 35ba8ae916

View File

@@ -1,5 +1,4 @@
import React from 'react';
import { List as makeList } from 'immutable';
import ShowMore from '../show-more';
import NodeDetailsHealthOverflow from './node-details-health-overflow';
@@ -22,7 +21,7 @@ export default class NodeDetailsHealth extends React.Component {
render() {
const {
metrics = makeList(),
metrics = [],
topologyId,
} = this.props;