1
0
Fork 0
mirror of synced 2024-08-16 02:22:08 +12:00

fix bug with dev variable not saving correctly

This commit is contained in:
Peter Clement 2023-01-27 15:50:59 +00:00
parent c1f270ef3a
commit 6bef0e64d5

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"