Skip to content

Commit

Permalink
web react fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lqqyt2423 committed Dec 10, 2022
1 parent 4d539f6 commit 7f88022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/client/src/components/ViewFlow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ class ViewFlow extends React.Component<Iprops, IState> {
<p>Query String Parameters</p>
<div className="header-block-content">
{
searchItems.map(({ key, value }) => {
searchItems.map(({ key, value }, index) => {
return (
<p key={key}>{key}: {value}</p>
<p key={`${key}-${index}`}>{key}: {value}</p>
)
})
}
Expand Down

0 comments on commit 7f88022

Please sign in to comment.