Skip to content
Snippets Groups Projects
Commit 3f031b25 authored by Yoan VALLET's avatar Yoan VALLET
Browse files

Merge branch 'features/US387-974_hide_no_data_text' into 'dev'

Remove NODATA text

See merge request web-et-numerique/llle_project/ecolyo!277
parents 26a390d5 26779c02
Branches
Tags
1 merge request!277Remove NODATA text
...@@ -179,7 +179,9 @@ const DataloadConsumptionVisualizer = ({ ...@@ -179,7 +179,9 @@ const DataloadConsumptionVisualizer = ({
</div> </div>
) : ( ) : (
<> <>
{dataload && lastDataDate && dataload.date > lastDataDate ? ( {!dataload ? null : dataload &&
lastDataDate &&
dataload.date > lastDataDate ? (
<div <div
className={`dataloadvisualizer-content ${fluidStyle.toLowerCase()} text-22-normal`} className={`dataloadvisualizer-content ${fluidStyle.toLowerCase()} text-22-normal`}
> >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment