diff --git a/dashboard/src/App.tsx b/dashboard/src/App.tsx index 7e2a5db..c7be576 100644 --- a/dashboard/src/App.tsx +++ b/dashboard/src/App.tsx @@ -387,22 +387,23 @@ export function App() {
| Rank | User | Verified | Speed (avg/video) | Annotations | Total time | |||
|---|---|---|---|---|---|---|---|---|
| Rank | User | Annotations | Anno/min | Verified | Total time | |||
| {r.rank > 0 ? (r.rank === 1 ? "๐ฅ 1" : `#${r.rank}`) : โ} | {r.user} | -{r.videos > 0 ? r.videos : 0} | -{r.videos > 0 ? fmtDuration(r.avg_time_ms) : โ} | {r.annotations > 0 ? r.annotations : 0} | -{r.videos > 0 ? fmtDuration(r.total_time_ms) : โ} | +{r.annotations_per_min > 0 ? r.annotations_per_min.toFixed(1) : โ} | +{r.videos > 0 ? r.videos : 0} | +{r.total_time_ms > 0 ? fmtDuration(r.total_time_ms) : โ} |