From b869ef2846cedb7dc50d5fef3990c0b6365a93ff Mon Sep 17 00:00:00 2001 From: "FUJI Goro (gfx)" Date: Thu, 11 Oct 2018 16:32:18 +0900 Subject: [PATCH] fix a bug that activeLink does not work React's style prop does not support an array --- src/components/decorators.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/decorators.js b/src/components/decorators.js index 937c401..6036204 100644 --- a/src/components/decorators.js +++ b/src/components/decorators.js @@ -61,7 +61,7 @@ class Container extends React.Component { return (
this.clickableRef = ref} - style={style.container}> + style={Object.assign({}, ...style.container)}> {!terminal ? this.renderToggle() : null}