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

Fixes error on highes/lowest scale values

See merge request bloodyhealth/drip!326
This commit is contained in:
Maria Zadnepryanets
2020-12-30 17:43:14 +00:00
+1 -1
View File
@@ -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}