Clean state
This commit is contained in:
parent
f352e65780
commit
84fefc3dd8
|
@ -17,7 +17,15 @@
|
||||||
import { ValidSnippetNameRegex } from "@budibase/shared-core"
|
import { ValidSnippetNameRegex } from "@budibase/shared-core"
|
||||||
import type { Snippet } from "@budibase/types"
|
import type { Snippet } from "@budibase/types"
|
||||||
|
|
||||||
export const show = () => drawer.show()
|
export const show = () => {
|
||||||
|
if (!snippet) {
|
||||||
|
key = Math.random().toString()
|
||||||
|
// Reset state when creating multiple snippets
|
||||||
|
code = ""
|
||||||
|
name = defaultName
|
||||||
|
}
|
||||||
|
drawer.show()
|
||||||
|
}
|
||||||
export const hide = () => drawer.hide()
|
export const hide = () => drawer.hide()
|
||||||
export let snippet: Snippet | null
|
export let snippet: Snippet | null
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue