diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-10-30 18:01:48 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-30 18:01:48 -0400 |
| commit | 1eec6338e1146439b1dbc6207843fbc44dd13088 (patch) | |
| tree | cfa42de569384f2ea09002450df08b766f57506c /ui/routes/(login)/setup/+page.svelte | |
| parent | 73f58f2c648a48019c611a4659d882223e4432d4 (diff) | |
Don't leave field binding vars uninitialized.
This was causing problems for changing passwords: if the user didn't type anything in the "original password" field, the code path to sending that field to the server was just straight-up omitting the field from the message, rather than setting it to empty string, causing a 422 Unprocessable Entity.
On investigation we had latent bugs related to this in a bunch of spots.
Diffstat (limited to 'ui/routes/(login)/setup/+page.svelte')
| -rw-r--r-- | ui/routes/(login)/setup/+page.svelte | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/routes/(login)/setup/+page.svelte b/ui/routes/(login)/setup/+page.svelte index 2503502..a1974b8 100644 --- a/ui/routes/(login)/setup/+page.svelte +++ b/ui/routes/(login)/setup/+page.svelte @@ -4,19 +4,19 @@ import LogIn from '$lib/components/LogIn.svelte'; - let disabled; - let username; - let password; + let username = "", password = ""; + let pending = false; + $: disabled = pending; async function onSubmit() { - disabled = true; + pending = true; const response = await setup(username, password); if (200 <= response.status && response.status < 300) { username = ''; password = ''; goto('/'); } - disabled = false; + pending = false; } </script> |
