We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a7c9601 + 9676aab commit ab62367Copy full SHA for ab62367
front/src/pods/embalse/components/reservoir-card-gauge.tsx
@@ -17,7 +17,8 @@ export const ReservoirCardGauge: React.FC<Props> = (props) => {
17
<h2 id="gauge-title" className="text-center">
18
{name}
19
</h2>
20
- <GaugeChart percentage={percentage} measurementDate={measurementDate} />
+ <GaugeChart percentage={percentage > 100 ? 100 : percentage} measurementDate=
21
+ {measurementDate} />
22
<GaugeLegend
23
currentVolume={currentVolume}
24
totalCapacity={totalCapacity}
0 commit comments