This commit is contained in:
lb
2023-12-14 13:57:49 +08:00
parent e4a2af8458
commit c3511e1bfe
4 changed files with 28 additions and 90 deletions

View File

@@ -32,7 +32,7 @@ function TemperatureBottom(props) {
}}
>
{Object.keys(tempBottom).map((d) => (
<BlueRect title={d} value={tempBottom[d]} blue={blueTe.includes(d)} />
<BlueRect title={d} key={d + Math.random()} value={tempBottom[d]} blue={blueTe.includes(d)} />
))}
</motion.div>
);