fix bug with dev variable not saving correctly
This commit is contained in:
parent
c1f270ef3a
commit
6bef0e64d5
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue