Till Sanders

Results 43 comments of Till Sanders

I just learned that you have to upgrade the Facebook SDK to use tracking on iOS 14. I think this impacts the priority of this issue, so I just wanted...

> Facebook are ending their tracking service in June so if that's your only concern - you won't have to worry about it very soon 😆 I think there might...

I needed argTypes to inject complex data that could not be serialized to JSON, resulting in this console warning: ``` We've detected a cycle in arg 'X'. Args should be...

@shilman I'm using v6.3.12. This is what I tried, but instead of the group variable, I only received the string 'Group': ```javascript export default { title: 'Components/Editor', component: Editor, argTypes:...

It took me quite a while to find the root cause of a very strange typing issue and it turned out to be this. I understand how this feature is...

@muuvmuuv Somehow, this doesn't work for me. I also read, that the `pre-commit` hook should not work for this usecase. Apparently, the `commit-msg` hook should be used instead. Though this...

@Arkweid I took a look at your example using the bash script. I'm trying to figure out how this could be used with a tool like commitlint without using a...

I feel the same way, @orestbida. I‘ve seen and used buttons like this with other solutions. It was nice to have the option to revise my choices easily. It would...

Update: I tried the default Nuxt template and had the same issues. However, I was able to narrow it down to v0.2.2 of [@storybook-vue/nuxt](https://github.com/storybook-vue/storybook-nuxt). v0.2.1 works for me. I also...

I needed to mock the composables from `vue-router` and used the `viteFinal` configuration option. The component I was writing the story for imports these composables like this: ```typescript import {...