diff options
| author | Georgios Andreadis <info@gandreadis.com> | 2020-07-03 11:47:23 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-08-24 19:47:23 +0200 |
| commit | 0a8985a672fdc12a3cf25837635ff73fb1b0b793 (patch) | |
| tree | af730ca76307d627d9ec42bb09a68539a35c047e /frontend/src | |
| parent | 52865c97f820b883977179930ce4961abdb39c12 (diff) | |
Fix formatting
Diffstat (limited to 'frontend/src')
| -rw-r--r-- | frontend/src/sagas/topology.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/sagas/topology.js b/frontend/src/sagas/topology.js index f86dcdc3..2e55156b 100644 --- a/frontend/src/sagas/topology.js +++ b/frontend/src/sagas/topology.js @@ -73,7 +73,7 @@ export function* onDeleteTopology(action) { const topologyIds = yield select((state) => state.objects.simulation[currentSimulationId].topologyIds) const currentTopologyId = yield select((state) => state.currentTopologyId) if (currentTopologyId === action.id) { - yield put(setCurrentTopology(topologyIds.filter(t => t !== action.id)[0])) + yield put(setCurrentTopology(topologyIds.filter((t) => t !== action.id)[0])) } yield call(deleteTopology, action.id) |
