prithivMLmods commited on
Commit
298ffc0
·
verified ·
1 Parent(s): 3d2b9f3

update app

Browse files
Files changed (1) hide show
  1. 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', `${totalModels} (Dl: ${formatNumFull(totalModelDl)})`, 'Total Datasets', `${totalDatasets} (Dl: ${formatNumFull(totalDatasetDl)})`],
1394
- ['Total Spaces', `${totalSpaces}`, 'Private Repos', `${totalPrivate}`],
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({