summaryrefslogtreecommitdiff
path: root/src/components/experiments/ExperimentRowComponent.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-15 12:53:26 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:06:03 +0200
commita1d95b3685cffb6a9344d0d1e5505dd391193f16 (patch)
tree42851ec0726881dd9f82a3ea12a7987324a68ef8 /src/components/experiments/ExperimentRowComponent.js
parentf604406453f95c82c3e5e4294a51245661868bbe (diff)
Implement experiment list and add
Diffstat (limited to 'src/components/experiments/ExperimentRowComponent.js')
-rw-r--r--src/components/experiments/ExperimentRowComponent.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/experiments/ExperimentRowComponent.js b/src/components/experiments/ExperimentRowComponent.js
index 79ce3eea..fbb0aac7 100644
--- a/src/components/experiments/ExperimentRowComponent.js
+++ b/src/components/experiments/ExperimentRowComponent.js
@@ -4,7 +4,7 @@ import Shapes from "../../shapes/index";
const ExperimentRowComponent = ({experiment}) => (
<tr>
<td>{experiment.name}</td>
- <td>{experiment.path.name}</td>
+ <td>{experiment.path.name ? experiment.path.name : "Path " + experiment.path.id}</td>
<td>{experiment.trace.name}</td>
<td>{experiment.scheduler.name}</td>
</tr>