mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:11:05 +08:00
Fix storybooks/storybook#1890 - issue with react fiber and immutable props.
This commit is contained in:
parent
ccb83c754d
commit
3693a27ec7
@ -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}><{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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user