1
0
Fork 0
mirror of synced 2024-09-11 15:08:05 +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 name = row?.name || ""
let productionValue let productionValue
let developmentValue let developmentValue
let useProductionValue = true let useProductionValue = true
const deleteVariable = name => { const deleteVariable = name => {
@ -71,7 +70,7 @@
<Input <Input
type="password" type="password"
on:change={e => { on:change={e => {
developmentValue = e.target.value developmentValue = e.detail
}} }}
disabled={useProductionValue} disabled={useProductionValue}
label="Value" label="Value"