# HG changeset patch # User Tom Gottfried # Date 1558691167 -7200 # Node ID 2eeb5a69d5f2502ae108b58b9d3d753ece27b0d8 # Parent 030dc48382c91039ca2392ebbcd782b18d100114 Exchange comparison and accuracy triangles Since comparison references the past, it should be on the left, while accuracy references preditions and should be on the right. diff -r 030dc48382c9 -r 2eeb5a69d5f2 client/src/components/map/styles.js --- a/client/src/components/map/styles.js Fri May 24 11:37:24 2019 +0200 +++ b/client/src/components/map/styles.js Fri May 24 11:46:07 2019 +0200 @@ -263,8 +263,8 @@ } let frame = ``; let waterlevel = ``; - let comparison = ``; - let accuracy = ``; + let accuracy = ``; + let comparison = ``; let svg = `data:image/svg+xml,${frame}${waterlevel}${comparison}${accuracy}`; let maps = store.state.map.openLayersMaps; let geom = feature.getGeometry();