mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:31:07 +08:00
Addon-docs: Apply transformSource to any SourceType if it is specified
This commit is contained in:
parent
8a52700d80
commit
4949bc18c4
@ -81,12 +81,12 @@ const getSnippet = (snippet: string, storyContext?: StoryContext): string => {
|
||||
|
||||
// if user has explicitly set this as dynamic, use snippet
|
||||
if (type === SourceType.DYNAMIC) {
|
||||
return snippet;
|
||||
return parameters.docs?.transformSource?.(snippet, storyContext) || snippet;
|
||||
}
|
||||
|
||||
// if this is an args story and there's a snippet
|
||||
if (type === SourceType.AUTO && snippet && isArgsStory) {
|
||||
return snippet;
|
||||
return parameters.docs?.transformSource?.(snippet, storyContext) || snippet;
|
||||
}
|
||||
|
||||
// otherwise, use the source code logic
|
||||
|
Loading…
x
Reference in New Issue
Block a user