From d11d23274219e463971f8d919e76620af261bf59 Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Tue, 31 Oct 2023 11:55:29 +0100 Subject: [PATCH] Rename variable to 'hydrating' --- frontend/src/lib/app.postcss | 2 +- frontend/src/routes/+layout.svelte | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/lib/app.postcss b/frontend/src/lib/app.postcss index 6f3c5b044..903448514 100644 --- a/frontend/src/lib/app.postcss +++ b/frontend/src/lib/app.postcss @@ -125,7 +125,7 @@ table tr:nth-last-child(-n + 2) .dropdown { } } -.unhydrated { +.hydrating { .input, input, button { diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte index f8e7d68bb..eff79487b 100644 --- a/frontend/src/routes/+layout.svelte +++ b/frontend/src/routes/+layout.svelte @@ -24,8 +24,8 @@ } } - let unhydrated = true; - onMount(() => unhydrated = false); + let hydrating = true; + onMount(() => hydrating = false); @@ -38,7 +38,7 @@ {/if} -
+