Skip to content

Commit

Permalink
Update web/src/components/Plugin/UI/limit-conn.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
juzhiyuan authored Apr 11, 2021
1 parent e8a8056 commit ce925d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/Plugin/UI/limit-conn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const LimitConn: React.FC<Props> = ({ form }) => {
>
<Select>
{["remote_addr", "server_addr", "http_x_real_ip", "http_x_forwarded_for", "consumer_name"].map(item => {
return <Select.Option value={item}>{item}</Select.Option>
return <Select.Option value={item} key={item}>{item}</Select.Option>
})}
</Select>
</Form.Item>
Expand Down

0 comments on commit ce925d0

Please sign in to comment.