From 84a3b3d4630adf45d1dbeb1630d964f60402d7cb Mon Sep 17 00:00:00 2001 From: Chris <1633711653@qq.com> Date: Tue, 27 Dec 2022 21:16:36 +0800 Subject: [PATCH] fix(playground): reset transform status (#2023) --- playground/src/components/Editor.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/playground/src/components/Editor.vue b/playground/src/components/Editor.vue index 249247eb95..9ceadc323e 100644 --- a/playground/src/components/Editor.vue +++ b/playground/src/components/Editor.vue @@ -48,6 +48,7 @@ function handleReset() { if (confirm('Reset all settings? It can NOT be undone.')) { inputHTML.value = defaultHTML customConfigRaw.value = defaultConfigRaw + options.value.transform = false } }