From c3676bc95cc96ad37e95c891058d63e487af4eed Mon Sep 17 00:00:00 2001 From: Conduitry Date: Sat, 23 Feb 2019 12:06:35 -0500 Subject: [PATCH 1/2] repl: fix some more prop editor bugs --- site/src/routes/repl/_components/Output/PropEditor.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/src/routes/repl/_components/Output/PropEditor.svelte b/site/src/routes/repl/_components/Output/PropEditor.svelte index 3fdbf26390..4ea6ce5e7f 100644 --- a/site/src/routes/repl/_components/Output/PropEditor.svelte +++ b/site/src/routes/repl/_components/Output/PropEditor.svelte @@ -28,7 +28,7 @@ function handleChange(event) { try { const value = fleece.evaluate(event.detail.value); - previous_code = event.detail.value; + code = previous_code = event.detail.value; error = null; dispatch('change', { value }); } catch (e) { @@ -59,7 +59,7 @@ } -
+
Date: Sat, 23 Feb 2019 12:23:28 -0500 Subject: [PATCH 2/2] repl: don't export time as prop in SVG Clock example --- site/content/examples/svg-clock/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/examples/svg-clock/App.svelte b/site/content/examples/svg-clock/App.svelte index 3e406b5d65..19b56d7335 100644 --- a/site/content/examples/svg-clock/App.svelte +++ b/site/content/examples/svg-clock/App.svelte @@ -1,7 +1,7 @@