Skip to content
Snippets Groups Projects
Commit 7aff0494 authored by Sofiya Tepikin's avatar Sofiya Tepikin
Browse files

Fixes error on highes/lowest scale values

parent ab1acf21
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ const TemperatureColumn = ({
key='fhm'
/>}
{data && data.y && <DotAndLine
{data && typeof(data.y) !== 'undefined' && <DotAndLine
y={data.y}
exclude={data.temperatureExclude}
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