This is an automated email from the ASF dual-hosted git repository.
hanahmily pushed a commit to branch update-antdpro
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking-ui.git
The following commit(s) were added to refs/heads/update-antdpro by this push:
new f0d0813 Refactor
f0d0813 is described below
commit f0d08131c791f5b3dcc876a80615f146ad4d0371
Author: hanahmily <[email protected]>
AuthorDate: Tue Feb 27 11:59:40 2018 +0800
Refactor
---
src/routes/Trace/Trace.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/routes/Trace/Trace.js b/src/routes/Trace/Trace.js
index 0730ed9..3a591ff 100644
--- a/src/routes/Trace/Trace.js
+++ b/src/routes/Trace/Trace.js
@@ -117,7 +117,7 @@ export default class Trace extends PureComponent {
{getFieldDecorator('applicationId')(
<Select placeholder="No application" style={{ width: '100%' }}>
{options.applicationId && options.applicationId.map((app) =>
{
- return (<Option value={app.key}>{app.label}</Option>);
+ return (<Option key={app.key}
value={app.key}>{app.label}</Option>);
})}
</Select>
)}
--
To stop receiving notification emails like this one, please contact
[email protected].