Skip to content
Snippets Groups Projects
Commit cc20e810 authored by Bucknell, Mary S.'s avatar Bucknell, Mary S.
Browse files

Fixed code style issues

parent 2cef4948
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ const { MARGIN, CIRCLE_RADIUS, CIRCLE_RADIUS_SINGLE_PT, SPARK_LINE_DIM, layoutSe
const { drawSimpleLegend, legendMarkerRowsSelector } = require('./legend');
const { plotSeriesSelectTable, availableTimeseriesSelector } = require('./parameters');
const { xScaleSelector, yScaleSelector, timeSeriesScalesByParmCdSelector } = require('./scales');
const { Actions, configureStore } = require('../../store');
const { Actions } = require('../../store');
const { currentVariableLineSegmentsSelector, currentVariableSelector, currentVariableTimeseries, pointsSelector,
methodsSelector, pointsTableDataSelector, isVisibleSelector, titleSelector,
descriptionSelector, lineSegmentsByParmCdSelector, currentVariableTimeSeriesSelector, MASK_DESC, HASH_ID } = require('./timeseries');
......
......@@ -59,8 +59,7 @@ const siteMap = function(node, {siteno, latitude, longitude, zoom}) {
map.removeLayer(breachLayer);
map.removeLayer(leveeLayer);
}
}
else {
} else {
if (!map.hasLayer(floodLayer)) {
map.addLayer(floodLayer);
map.addLayer(breachLayer);
......
......@@ -65,7 +65,9 @@ export const Actions = {
Promise.all([floodFeatures, floodExtent]).then((data) => {
const [features, extent] = data;
if (features.length > 0) {
const stages = features.map((feature) => feature.attributes.STAGE).sort(function(a, b) {return a - b;});
const stages = features.map((feature) => feature.attributes.STAGE).sort(function(a, b) {
return a - b;
});
displatch(Actions.setFloodFeatures(stages, extent.extent));
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment