fix: update masked secret environment value after replace action (#5335)

This commit is contained in:
Nivedin 2025-08-19 19:55:31 +05:30 committed by GitHub
parent f430caa1c0
commit 24c0f9370b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -177,6 +177,19 @@ watch(
}
)
//update secretText when modelValue changes
watch(
() => props.modelValue,
(newVal) => {
if (secretText.value !== newVal) {
secretText.value = newVal
}
},
{
immediate: true,
}
)
onClickOutside(autoCompleteWrapper, () => {
showSuggestionPopover.value = false
})