Skip to content

Commit 1f10240

Browse files
authored
fix: duplicate labels in Servers UI (#6568)
1 parent 6db4def commit 1f10240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/plugins/oas3/components/servers.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export default class Servers extends React.Component {
129129
<table>
130130
<tbody>
131131
{
132-
currentServerVariableDefs.map((val, name) => {
132+
currentServerVariableDefs.entrySeq().map(([name, val]) => {
133133
return <tr key={name}>
134134
<td>{name}</td>
135135
<td>

0 commit comments

Comments
 (0)