mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
🐛 Fix chrome autofill issue (#2294)
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<div @keydown.stop :class="$style.container" v-if="credentialProperties.length">
|
||||
<div v-for="parameter in credentialProperties" :key="parameter.name">
|
||||
<form v-for="parameter in credentialProperties" :key="parameter.name" autocomplete="off">
|
||||
<!-- Why form? to break up inputs, to prevent Chrome autofill -->
|
||||
<ParameterInputExpanded
|
||||
:parameter="parameter"
|
||||
:value="credentialData[parameter.name]"
|
||||
@@ -8,7 +9,7 @@
|
||||
:showValidationWarnings="showValidationWarnings"
|
||||
@change="valueChanged"
|
||||
/>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user