diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-18 16:52:11 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:06:04 +0200 |
| commit | f8f617c97fcb2df3dbefc9527d974151e367cb60 (patch) | |
| tree | f6405aa54f73b66220f36e3a388725f71d023cfb /src/actions/experiments.js | |
| parent | 9f86ae6de969baa625e3341c796c64f63b5153ce (diff) | |
Implement basic experiment mode with timeline
The timeline doesn't trigger anything yet, but the visual element is in place and connected.
Diffstat (limited to 'src/actions/experiments.js')
| -rw-r--r-- | src/actions/experiments.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/actions/experiments.js b/src/actions/experiments.js index c7cc7e24..c64df019 100644 --- a/src/actions/experiments.js +++ b/src/actions/experiments.js @@ -24,9 +24,10 @@ export function deleteExperiment(id) { }; } -export function openExperimentSucceeded(id) { +export function openExperimentSucceeded(simulationId, experimentId) { return { type: OPEN_EXPERIMENT_SUCCEEDED, - id + simulationId, + experimentId } } |
