mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:11:05 +08:00
Fix globals
This commit is contained in:
parent
23254408d1
commit
abbd38f69c
@ -196,10 +196,16 @@ export class ClientApi<TFramework extends AnyFramework> {
|
||||
parameters
|
||||
);
|
||||
if (globals) {
|
||||
this.facade.projectAnnotations.globals = globals;
|
||||
this.facade.projectAnnotations.globals = {
|
||||
...this.facade.projectAnnotations.globals,
|
||||
...globals,
|
||||
};
|
||||
}
|
||||
if (globalTypes) {
|
||||
this.facade.projectAnnotations.globalTypes = normalizeInputTypes(globalTypes);
|
||||
this.facade.projectAnnotations.globalTypes = {
|
||||
...this.facade.projectAnnotations.globalTypes,
|
||||
...normalizeInputTypes(globalTypes),
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -150,6 +150,7 @@ export function prepareStory<TFramework extends AnyFramework>(
|
||||
contextForEnhancers.parameters = {
|
||||
...contextForEnhancers.parameters,
|
||||
__id: id,
|
||||
globals: projectAnnotations.globals,
|
||||
globalTypes: projectAnnotations.globalTypes,
|
||||
args: contextForEnhancers.initialArgs,
|
||||
argTypes: contextForEnhancers.argTypes,
|
||||
|
Loading…
x
Reference in New Issue
Block a user