fix bug with dev variable not saving correctly

This commit is contained in:
Peter Clement 2023-01-27 15:50:59 +00:00
parent a2f93a8bef
commit 7162a9c9dc
1 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@
let name = row?.name || ""
let productionValue
let developmentValue
let useProductionValue = true
const deleteVariable = name => {
@ -71,7 +70,7 @@
<Input
type="password"
on:change={e => {
developmentValue = e.target.value
developmentValue = e.detail
}}
disabled={useProductionValue}
label="Value"