Kevin Leto

Results 7 comments of Kevin Leto

I run into this as well. Thanks @gyurielf for the link to Kevin's explanation, now it's clear why that happens. What isn't clear to me yet, is if that is...

> > ```svelte > > > > export let user: {name: string, age: number};// ← comes from the main component through "bind:user" > > > > $: nameChanged(user.name); > >...

You probably need to work with boolean variables like: ```svelte let alreadyLoaded = false; if(!alreadyLoaded) { data = fetch(...); alreadyLoaded = true; } ``` That is the only workaround I've...

Hi guys. Any chance that the bug will be fixed and a new release will be created? The fix of @codeflow-biz seems to be really simple. Thanks!

I hope this feature will be merged in a short time 🙏 It would be really helpful ❗

In the current version it works, but if the size of the Gantt is modified, all highlighted columns will be displayed wrongly (due to the background image, IMO). I've tested...

I've experienced this issue on the new versions `v4.0.7-beta/v4.0.9-beta`. Is there any update? Thanks in advance!