mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:21:06 +08:00
Update code/lib/csf-tools/src/enrichCsf.ts
Co-authored-by: Jeppe Reinhold <jeppe@chromatic.com>
This commit is contained in:
parent
21bdd0d951
commit
61df3ea48c
@ -83,12 +83,12 @@ const addComponentDescription = (
|
||||
value: t.ObjectProperty
|
||||
) => {
|
||||
if (!path.length) {
|
||||
// make this the lowest-priority so that if the user is object-spreading on top of it,
|
||||
// the users' code will "win"
|
||||
const hasExistingComponent = node.properties.find(
|
||||
(p) => t.isObjectProperty(p) && t.isIdentifier(p.key) && p.key.name === 'component'
|
||||
);
|
||||
if (!hasExistingComponent) {
|
||||
// make this the lowest-priority so that if the user is object-spreading on top of it,
|
||||
// the users' code will "win"
|
||||
node.properties.unshift(value);
|
||||
}
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user