Fixes error on highes/lowest scale values

This commit is contained in:
Sofiya Tepikin
2020-12-30 18:35:33 +01:00
parent ab1acf21ba
commit 7aff04946e
+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}