Loading src/components/StickChart.vue +1 −0 Original line number Diff line number Diff line Loading @@ -700,6 +700,7 @@ export default { const py = Math.floor(y(snowHeightAverage)) context.beginPath() context.strokeStyle = color || '#555555' context.globalAlpha = 1 context.lineWidth = 3 context.moveTo(lastPx, lastPy) context.lineTo(px, py) Loading src/components/header/Filters.vue +15 −13 Original line number Diff line number Diff line Loading @@ -38,9 +38,11 @@ <vue-slider :contained="true" :lazy="true" :tooltip="'hover'" :tooltipPlacement="'top'" :tooltip="'always'" :tooltipPlacement="'bottom'" :max="maxStickLengthCm" :processStyle="{ 'background-color': '#89bdbd' }" :tooltipStyle="{ 'background-color': '#89bdbd' }" v-model="snowHeight" /> </div> Loading Loading @@ -71,49 +73,49 @@ export default { value: 1 }, { name: 'Everything', name: 'All', value: 2 } ], snowFoundSelect: [ { name: 'No snow found', name: 'No', value: 0 }, { name: 'Snow found', name: 'Yes', value: 1 }, { name: 'Everything', name: 'All', value: 2 } ], editedSelect: [ { name: 'Not edited', name: 'No', value: 0 }, { name: 'Edited', name: 'Yes', value: 1 }, { name: 'Everything', name: 'All', value: 2 } ], discardedSelect: [ { name: 'Not discarded', name: 'No', value: 0 }, { name: 'Discarded', name: 'Yes', value: 1 }, { name: 'Everything', name: 'All', value: 2 } ] Loading Loading @@ -197,7 +199,7 @@ export default { } </script> <style scoped> <style lang="scss" scoped> .filters-container { display: grid; grid-template-rows: auto auto auto auto auto auto; Loading Loading
src/components/StickChart.vue +1 −0 Original line number Diff line number Diff line Loading @@ -700,6 +700,7 @@ export default { const py = Math.floor(y(snowHeightAverage)) context.beginPath() context.strokeStyle = color || '#555555' context.globalAlpha = 1 context.lineWidth = 3 context.moveTo(lastPx, lastPy) context.lineTo(px, py) Loading
src/components/header/Filters.vue +15 −13 Original line number Diff line number Diff line Loading @@ -38,9 +38,11 @@ <vue-slider :contained="true" :lazy="true" :tooltip="'hover'" :tooltipPlacement="'top'" :tooltip="'always'" :tooltipPlacement="'bottom'" :max="maxStickLengthCm" :processStyle="{ 'background-color': '#89bdbd' }" :tooltipStyle="{ 'background-color': '#89bdbd' }" v-model="snowHeight" /> </div> Loading Loading @@ -71,49 +73,49 @@ export default { value: 1 }, { name: 'Everything', name: 'All', value: 2 } ], snowFoundSelect: [ { name: 'No snow found', name: 'No', value: 0 }, { name: 'Snow found', name: 'Yes', value: 1 }, { name: 'Everything', name: 'All', value: 2 } ], editedSelect: [ { name: 'Not edited', name: 'No', value: 0 }, { name: 'Edited', name: 'Yes', value: 1 }, { name: 'Everything', name: 'All', value: 2 } ], discardedSelect: [ { name: 'Not discarded', name: 'No', value: 0 }, { name: 'Discarded', name: 'Yes', value: 1 }, { name: 'Everything', name: 'All', value: 2 } ] Loading Loading @@ -197,7 +199,7 @@ export default { } </script> <style scoped> <style lang="scss" scoped> .filters-container { display: grid; grid-template-rows: auto auto auto auto auto auto; Loading