Update code/lib/csf-tools/src/enrichCsf.ts

Co-authored-by: Jeppe Reinhold <jeppe@chromatic.com>
This commit is contained in:
Michael Shilman 2023-01-18 10:53:21 +08:00 committed by GitHub
parent 21bdd0d951
commit 61df3ea48c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;