several bugfixes

This commit is contained in:
2024-04-10 13:04:37 -04:00
parent 72d2850e83
commit a238ad3b7f
8 changed files with 22 additions and 11 deletions

View File

@@ -9,7 +9,7 @@ import {CircularProgress} from "@mui/material";
const StatBox = (props) => <div className={"col-lg-3 col-6"}>
<div className={"small-box bg-" + props.color}>
<div className={"inner"}>
{props.count ?
{!isNaN(props.count) ?
<>
<h3>{props.count}</h3>
<p>{props.text}</p>