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 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"
|
||||||
|
|
Loading…
Reference in New Issue