mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix module format stories w/ parameters & no name (#7216)
Fix module format stories w/ parameters & no name
This commit is contained in:
commit
fb6d36a7f0
@ -27,13 +27,15 @@ export default {
|
||||
};
|
||||
|
||||
export const all = () => <p>Story</p>;
|
||||
all.parameters = {
|
||||
decorators: [
|
||||
s => (
|
||||
<>
|
||||
<p>Local Decorator</p>
|
||||
{s()}
|
||||
</>
|
||||
),
|
||||
],
|
||||
all.story = {
|
||||
parameters: {
|
||||
decorators: [
|
||||
s => (
|
||||
<>
|
||||
<p>Local Decorator</p>
|
||||
{s()}
|
||||
</>
|
||||
),
|
||||
],
|
||||
},
|
||||
};
|
||||
|
@ -43,6 +43,8 @@ export const errorStory = () => (
|
||||
);
|
||||
// We need to disable this one in Chromatic because the screenshot includes the uploaded URL sadly:
|
||||
// eg. https://www.chromaticqa.com/snapshot?appId=5a375b97f4b14f0020b0cda3&id=5c52edb4323f9000249aae72
|
||||
errorStory.parameters = {
|
||||
chromatic: { disable: true },
|
||||
errorStory.story = {
|
||||
parameters: {
|
||||
chromatic: { disable: true },
|
||||
},
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user