mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Source: Fix multiple stories overwriting each other
This commit is contained in:
parent
1f231fe74f
commit
03b4d142f6
@ -21,7 +21,7 @@ export const SourceContainer: FC<{}> = ({ children }) => {
|
||||
const sourcesRef = React.useRef<StorySources>();
|
||||
const handleAddJSX = (id: StoryId, newJsx: SourceItem) => {
|
||||
if (newJsx !== sources[id]) {
|
||||
const newSources = { ...sources, [id]: newJsx };
|
||||
const newSources = { ...sourcesRef.current, [id]: newJsx };
|
||||
sourcesRef.current = newSources;
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user