Michael Shilman

Results 773 comments of Michael Shilman

@matheo hmmm did you try recently? might have gotten fixed since you filed this through some other change, since i've been messing with this code a bunch

Thanks! It wouldn't surprise me if there was still a bug, just having trouble repro-ing it! 😄

@matheo I found a repro case in `examples/angular-cli`, so I don't need one anymore. Fix coming soon!

ZOMG!! I just released https://github.com/storybookjs/storybook/releases/tag/v6.0.21 containing PR #12322 that references this issue. Upgrade today to try it out! Closing this issue. Please re-open if you think there's still more to...

@gregfagan Do you have a repro repo you can share?

@monolithed does it fix it to add: ``` rotate: { description: 'Повернуть элемент (не работает в IE 9)', defaultValue: 0, table: { ... }, control: { ... }, } ```

@kevinzang can you try in 6.2-beta? we recently fixed a bunch of bugs around default value handling

try using the syntax: ```js export const X = () => ... ``` instead of: ```js export function X() { ... } ```

That's pretty strange. Any interest in trying to debug this? There are test cases in: https://github.com/storybookjs/storybook/blob/next/lib/source-loader/src/abstract-syntax-tree/inject-decorator.test.js

I'm able to repro in the original repo. How I worked around it: 1. convert all `export function Foo` to `export const Foo =` 2. move the `All` story to...