2
0

fix(engine): 🚑️ Webhook return func

This commit is contained in:
Baptiste Arnaud
2022-03-31 23:27:52 +02:00
parent db10f1ee89
commit 3585e63c48
4 changed files with 7 additions and 7 deletions

View File

@ -96,7 +96,7 @@ export const VariableSearchInput = ({
const handleCreateNewVariableClick = () => {
if (!inputValue || inputValue === '') return
const id = cuid()
const id = 'v' + cuid()
onSelectVariable({ id, name: inputValue })
createVariable({ id, name: inputValue })
onClose()