We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dee283 commit 542860aCopy full SHA for 542860a
1 file changed
front/src/pods/embalse/components/reservoir-card-gauge.tsx
@@ -15,7 +15,9 @@ export const ReservoirCardGauge: React.FC<Props> = (props) => {
15
className="card bg-base-100 mx-auto w-full items-center gap-6 rounded-2xl p-4 shadow-lg"
16
aria-labelledby="gauge-title"
17
>
18
- <h2 id="gauge-title" className="text-center"></h2>
+ <h2 id="gauge-title" className="text-center">
19
+ {name}
20
+ </h2>
21
<GaugeChart percentage={percentage > 100 ? 100 : percentage} measurementDate=
22
{measurementDate} />
23
<GaugeLegend
0 commit comments