-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Controls not passing arg prop values to storyObj. #8
Comments
Yep confirmed this doesn't work for me either, going to downgrade |
Additionnal case: Props are passedby String type. In my case, I've few boolean props and all of them trigger some warning : Storie.js argTypes: {
isLoading: { control: "boolean" },
} Component.vue props: {
isLoading: {
type: Boolean
}
} |
@khylias I still have the same issue after your patch in 0.9.25 and running Storybook 7.5.3. Downgrading to 0.9.21 still works. |
I found the problem. If you look at line 8 of https://github.com/JoJk0/storybook-addon-vue-slots/blob/main/src/render.ts - it will always enter the value directly interpreted as a |
@JoJk0 PR to solve the problem provided above. Tell me if you want me to change anything (or feel free to change it yourself, of course). Cheers, and thanks for the good work! |
Since the 0.9.24 update story
argTypes
controls are not updating args prop values.The text was updated successfully, but these errors were encountered: