This commit is contained in:
Henry Dollman
2024-07-08 16:24:37 -04:00
parent 89b06d00aa
commit 5e56a74ab5
2 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ export function Home() {
setSystems((curSystems) => {
const i = curSystems.findIndex((s) => s.id === e.record.id)
if (i > -1) {
const newSystems = [...systems]
const newSystems = [...curSystems]
newSystems[i] = e.record
return newSystems
} else {

View File

@@ -27,13 +27,13 @@ function CellFormatter(info: CellContext<SystemRecord, unknown>) {
}
return (
<div class="flex gap-2 items-center">
<span>{val.toFixed(2)}%</span>
<span class="grow block bg-secondary h-4 relative rounded-sm overflow-hidden">
<span
className="absolute inset-0 w-full h-full origin-left"
className="absolute inset-0 w-full h-full origin-left transition-all duration-500 ease-in-out"
style={{ transform: `scalex(${val}%)`, background }}
></span>
</span>
<span class="w-14">{val.toFixed(2)}%</span>
</div>
)
}