Results 353 comments of Tee Ming

@PuruVJ have any of these concerns already been covered in the new svelte doc site? PS: excited for the impending release! :)

~Is it possible for the default behaviour to call `form.reset` before the DOM is updated? Then, the form is still populated with any returned `form` values from the server after...

The input also does not reset as long as a new or different value is submitted. However, submitting the same value consecutively guarantees a reset. https://stackblitz.com/edit/github-akyafk?file=src/routes/+page.svelte The issue is `input.value`...

> My script has this: > > ```js > export let data; > let city = data.city; > ``` > > And I changed one part of the page content—outside...

> Update: oh yeah, I remember there is a reason I didn't use `$: ` in the first place. > > If your goal is to initialize `city` from the...

@itssumitrai does the documentation below help resolve your issue? Does setting `ORIGIN` to your user facing hostname help? https://kit.svelte.dev/docs/adapter-node#environment-variables-origin-protocolheader-and-hostheader

Do we still need to document this if we can include it by default when the Svelte VS Code extension is installed? https://github.com/sveltejs/language-tools/pull/2330

While waiting for a fix, you can workaround this by adding `local` to the transition: ```diff import { page } from '$app/stores'; import { slide } from 'svelte/transition'; $: isB...

> +1, but not using a transition. Seeing subsequent pages mount _under_ the previous page. Like, at the bottom of the page. The +layout _and_ +page of the child page...

> I can't track this down to a recent kit version, going back as far as 450 still reproduces this. I think the issue lies in Svelte core. I can...