summaryrefslogtreecommitdiff
path: root/src/components/experiments/ExperimentRowComponent.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-22 21:40:16 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:06:18 +0200
commitaf8d571dd91be338b0fc07d8c64b63e04e4ad329 (patch)
treef6d6a7dfbe6a9e5dc6223b5007adadfae8af6dfc /src/components/experiments/ExperimentRowComponent.js
parentbf7708f658cc6299a3b775afe24459b5a808c54d (diff)
Center table row text
Diffstat (limited to 'src/components/experiments/ExperimentRowComponent.js')
-rw-r--r--src/components/experiments/ExperimentRowComponent.js16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/components/experiments/ExperimentRowComponent.js b/src/components/experiments/ExperimentRowComponent.js
index 8f57c936..eb9cbacf 100644
--- a/src/components/experiments/ExperimentRowComponent.js
+++ b/src/components/experiments/ExperimentRowComponent.js
@@ -5,10 +5,18 @@ import Shapes from "../../shapes/index";
const ExperimentRowComponent = ({experiment, simulationId, onDelete}) => (
<tr>
- <td>{experiment.name}</td>
- <td>{experiment.path.name ? experiment.path.name : "Path " + experiment.path.id}</td>
- <td>{experiment.trace.name}</td>
- <td>{experiment.scheduler.name}</td>
+ <td className="pt-3">
+ {experiment.name}
+ </td>
+ <td className="pt-3">
+ {experiment.path.name ? experiment.path.name : "Path " + experiment.path.id}
+ </td>
+ <td className="pt-3">
+ {experiment.trace.name}
+ </td>
+ <td className="pt-3">
+ {experiment.scheduler.name}
+ </td>
<td className="text-right">
<Link
to={"/simulations/" + simulationId + "/experiments/" + experiment.id}