Skip to content
Snippets Groups Projects
Commit 17266d46 authored by Maria Zadnepryanets's avatar Maria Zadnepryanets
Browse files

Merge branch 'fix-highest-scale-value' into 'rebased-redesign'

Fixes error on highes/lowest scale values

See merge request bloodyhealth/drip!326
parents 45bc9f6c 7aff0494
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ const TemperatureColumn = ({ ...@@ -41,7 +41,7 @@ const TemperatureColumn = ({
key='fhm' key='fhm'
/>} />}
{data && data.y && <DotAndLine {data && typeof(data.y) !== 'undefined' && <DotAndLine
y={data.y} y={data.y}
exclude={data.temperatureExclude} exclude={data.temperatureExclude}
rightY={data.rightY} rightY={data.rightY}
......
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