From 374c57fe2b6d6f91c50edd769c2ade5b1c0c78d6 Mon Sep 17 00:00:00 2001 From: Travis Spomer <16262858+TravisSpomer@users.noreply.github.com> Date: Thu, 19 Dec 2024 14:17:41 -0800 Subject: [PATCH] Attempted workaround for .value not working yet --- src/lib/components/PostView.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/PostView.svelte b/src/lib/components/PostView.svelte index c5a0623..402cdd8 100644 --- a/src/lib/components/PostView.svelte +++ b/src/lib/components/PostView.svelte @@ -38,9 +38,9 @@ { try { - isEditing = true isWaiting = true editedContent = (await getPostByID(post.id, { original: true })).post.html + isEditing = true } finally {