update app
Browse files- index.html +6 -5
index.html
CHANGED
|
@@ -1388,11 +1388,12 @@
|
|
| 1388 |
|
| 1389 |
// Overview Table
|
| 1390 |
const overviewBody = [
|
| 1391 |
-
['Username', `@${u}`, 'Followers', `${formatNumFull(p?.numFollowers ?? 0)}`],
|
| 1392 |
-
['Organizations', `${Array.isArray(p?.orgs) ? p.orgs.length : 0}`, 'Total Likes', `${formatNumFull(totalLikes)}`],
|
| 1393 |
-
['Total Models', `${
|
| 1394 |
-
['Total
|
| 1395 |
-
['Downloads (Last 30 Days)', `${formatNumFull(totalDlMonthly)}`
|
|
|
|
| 1396 |
];
|
| 1397 |
|
| 1398 |
doc.autoTable({
|
|
|
|
| 1388 |
|
| 1389 |
// Overview Table
|
| 1390 |
const overviewBody = [
|
| 1391 |
+
['Username', `@${u}`, 'Total Followers', `${formatNumFull(p?.numFollowers ?? 0)}`],
|
| 1392 |
+
['Organizations Joined', `${Array.isArray(p?.orgs) ? p.orgs.length : 0}`, 'Total Likes Received', `${formatNumFull(totalLikes)}`],
|
| 1393 |
+
['Total Models Created', `${formatNumFull(totalModels)}`, 'Total Model Downloads', `${formatNumFull(totalModelDl)}`],
|
| 1394 |
+
['Total Datasets Created', `${formatNumFull(totalDatasets)}`, 'Total Dataset Downloads', `${formatNumFull(totalDatasetDl)}`],
|
| 1395 |
+
['Total Spaces Created', `${formatNumFull(totalSpaces)}`, 'Downloads (Last 30 Days)', `${formatNumFull(totalDlMonthly)}`],
|
| 1396 |
+
['Private Repositories', `${formatNumFull(totalPrivate)}`, 'Total Lifetime Downloads', `${formatNumFull(totalModelDl + totalDatasetDl)}`]
|
| 1397 |
];
|
| 1398 |
|
| 1399 |
doc.autoTable({
|