# HG changeset patch # User Thomas Junk # Date 1551107793 -3600 # Node ID 123e7f43b676edc43db5f707d0d7284d7b1dc70e # Parent fde9c0f8545540c9f603d7ec501b96653f1074f0 fairway_store: fix cleanup bug diff -r fde9c0f85455 -r 123e7f43b676 client/src/store/fairway.js --- a/client/src/store/fairway.js Mon Feb 25 16:00:31 2019 +0100 +++ b/client/src/store/fairway.js Mon Feb 25 16:16:33 2019 +0100 @@ -114,6 +114,9 @@ state.fairwayData = []; state.startPoint = null; state.endPoint = null; + state.referenceWaterLevel = null; + state.waterLevels = {}; + state.selectedWaterLevel = ""; }, previousCuts: (state, previousCuts) => { state.previousCuts = previousCuts;