Browse Source

fix: duplicate labels in Servers UI (#6568)

bubble
geraldglynn 3 years ago
committed by GitHub
parent
commit
1f10240a97
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/core/plugins/oas3/components/servers.jsx

+ 1
- 1
src/core/plugins/oas3/components/servers.jsx View File

@@ -129,7 +129,7 @@ export default class Servers extends React.Component {
<table>
<tbody>
{
currentServerVariableDefs.map((val, name) => {
currentServerVariableDefs.entrySeq().map(([name, val]) => {
return <tr key={name}>
<td>{name}</td>
<td>


Loading…
Cancel
Save