fix: reactive key-value input placeholders
This commit is contained in:
parent
3632fe15fa
commit
2f69f723e7
4 changed files with 4 additions and 4 deletions
|
|
@ -157,7 +157,7 @@
|
|||
<div v-else>
|
||||
<div
|
||||
v-for="(header, index) in workingHeaders"
|
||||
:key="`header-${header.id}`"
|
||||
:key="`header-${header.id}-${index}`"
|
||||
class="flex border-b divide-x divide-dividerLight border-dividerLight"
|
||||
>
|
||||
<SmartAutoComplete
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
<div v-else>
|
||||
<div
|
||||
v-for="(header, index) in workingHeaders"
|
||||
:key="`header-${header.id}`"
|
||||
:key="`header-${header.id}-${index}`"
|
||||
class="flex border-b divide-x divide-dividerLight border-dividerLight"
|
||||
>
|
||||
<SmartAutoComplete
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
<div v-else>
|
||||
<div
|
||||
v-for="(param, index) in workingParams"
|
||||
:key="`param-${param.id}`"
|
||||
:key="`param-${param.id}-${index}`"
|
||||
class="flex border-b divide-x divide-dividerLight border-dividerLight"
|
||||
>
|
||||
<SmartEnvInput
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
<div v-else>
|
||||
<div
|
||||
v-for="(param, index) in workingUrlEncodedParams"
|
||||
:key="`param-${param.id}`"
|
||||
:key="`param-${param.id}-${index}`"
|
||||
class="flex border-b divide-x divide-dividerLight border-dividerLight"
|
||||
>
|
||||
<SmartEnvInput
|
||||
|
|
|
|||
Loading…
Reference in a new issue