mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix: fix value access
This commit is contained in:
parent
842cdc5b80
commit
472ab7c988
|
@ -608,7 +608,7 @@ export default defineComponent({
|
|||
}
|
||||
|
||||
// if the value is marked as empty return empty string, to prevent displaying the asterisks
|
||||
if (this.value === CREDENTIAL_EMPTY_VALUE) {
|
||||
if (this.modelValue === CREDENTIAL_EMPTY_VALUE) {
|
||||
return '';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue