Merge pull request #1836 from weaveworks/1825-fix-plugin-renderer

Fixes plugin renderer in status line
This commit is contained in:
David
2016-09-01 14:47:34 +02:00
committed by GitHub

View File

@@ -27,7 +27,7 @@ class Plugins extends React.Component {
Plugins:
</span>
{hasPlugins && this.props.plugins.toIndexedSeq()
.map((plugin, index) => this.renderPlugin(plugin, index))}
.map(plugin => this.renderPlugin(plugin.toJS()))}
{!hasPlugins && <span className="plugins-empty">n/a</span>}
</div>
);