From 8ac4d0bb624469ec1e29b206228b3b159ed111aa Mon Sep 17 00:00:00 2001 From: David Kaltschmidt Date: Tue, 30 Aug 2016 16:53:22 +0200 Subject: [PATCH] Fixes plugin renderer in status line The code assumed a plugin object was JS, but it's actually an immutable. Calling `toJS` to fix. Fixes #1825 --- client/app/scripts/components/plugins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/scripts/components/plugins.js b/client/app/scripts/components/plugins.js index 5217b1ed0..284c176c2 100644 --- a/client/app/scripts/components/plugins.js +++ b/client/app/scripts/components/plugins.js @@ -27,7 +27,7 @@ class Plugins extends React.Component { Plugins: {hasPlugins && this.props.plugins.toIndexedSeq() - .map((plugin, index) => this.renderPlugin(plugin, index))} + .map(plugin => this.renderPlugin(plugin.toJS()))} {!hasPlugins && n/a} );