aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/panels/ServicePane.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/panels/ServicePane.js')
-rw-r--r--frontend/src/components/panels/ServicePane.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/panels/ServicePane.js b/frontend/src/components/panels/ServicePane.js
index b21ad6c..eaefa64 100644
--- a/frontend/src/components/panels/ServicePane.js
+++ b/frontend/src/components/panels/ServicePane.js
@@ -100,7 +100,7 @@ class ServicePane extends Component {
const service = this.state.currentService;
let services = this.state.services.map(s =>
- <tr onClick={() => {
+ <tr key={s.port} onClick={() => {
this.reset();
this.setState({isUpdate: true, currentService: _.cloneDeep(s)});
}} className={classNames("row-small", "row-clickable", {"row-selected": service.port === s.port })}>