Fix storybooks/storybook#1890 - issue with react fiber and immutable props.

This commit is contained in:
Brandon Vandegrift 2017-09-25 20:41:45 -04:00
parent ccb83c754d
commit 3693a27ec7

View File

@ -58,14 +58,15 @@ export default function Node(props) {
paddingRight: 3,
};
Object.assign(containerStyle, leftPad);
// Keep a copy so that further mutations to containerStyle don't impact us:
const containerStyleCopy = Object.assign({}, containerStyle, leftPad);
const { name, text, children } = getData(node);
// Just text
if (!name) {
return (
<div style={containerStyle}>
<div style={containerStyleCopy}>
<span style={tagStyle}>{text}</span>
</div>
);
@ -74,7 +75,7 @@ export default function Node(props) {
// Single-line tag
if (!children) {
return (
<div style={containerStyle}>
<div style={containerStyleCopy}>
<span style={tagStyle}>&lt;{name}</span>
<Props
node={node}
@ -89,9 +90,6 @@ export default function Node(props) {
);
}
// Keep a copy so that further mutations to containerStyle don't impact us:
const containerStyleCopy = Object.assign({}, containerStyle);
// tag with children
return (
<div>