fix(common): ensure the add-environment modal value field is empty when opened via the inspector (#3664)
This commit is contained in:
parent
fad31a47ee
commit
5179cf59a4
1 changed files with 1 additions and 1 deletions
|
|
@ -296,7 +296,7 @@ watch(
|
|||
|
||||
defineActionHandler("modals.environment.add", ({ envName, variableName }) => {
|
||||
editingVariableName.value = envName
|
||||
if (variableName) editingVariableValue.value = variableName
|
||||
editingVariableValue.value = variableName ?? ""
|
||||
displayModalNew(true)
|
||||
})
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue