We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e287c1b commit 2dee283Copy full SHA for 2dee283
1 file changed
front/src/pods/embalse/components/reservoir-card-gauge.tsx
@@ -15,7 +15,7 @@ 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 className="text-center">{name}</h2>
+ <h2 id="gauge-title" className="text-center"></h2>
19
<GaugeChart percentage={percentage > 100 ? 100 : percentage} measurementDate=
20
{measurementDate} />
21
<GaugeLegend
0 commit comments