-
+
+
+
+ {metric.projectName === '' ? 'No name' : metric.projectName}
+
+
+
= 75,
+ 'bg-orange-500': metric.score >= 50 && metric.score < 75,
+ 'bg-red-500': metric.score < 50,
+ }
)}
>
- {metric.projectName === '' ? 'No name' : metric.projectName}
-
+
Score: {metric.score}
+
-
-
-
-
{metric.contributorsCount}
-
-
-
- {new Date(metric.createdAt).toLocaleString('default', {
- month: 'short',
- day: 'numeric',
- year: 'numeric',
- })}
-
-
-
= 75,
- 'bg-orange-500 text-orange-900': metric.score >= 50 && metric.score < 75,
- 'bg-red-500 text-red-900': metric.score < 50,
- }
- )}
- >
-
{metric.score}
+
+
+
+
+ Stars
+
+
+ {metric.starsCount}
+
+
+
+
+ Forks
+
+
+ {metric.forksCount}
+
+
+
+
+ Contributors
+
+
+ {metric.contributorsCount}
+
+
+
+
+ Health Checked
+
+
+ {new Date(metric.createdAt).toLocaleString('en-US', {
+ month: 'short',
+ day: 'numeric',
+ year: 'numeric',
+ })}
+
+
diff --git a/frontend/src/components/ProjectsDashboardDropDown.tsx b/frontend/src/components/ProjectsDashboardDropDown.tsx
index c00b54109c..9a51089013 100644
--- a/frontend/src/components/ProjectsDashboardDropDown.tsx
+++ b/frontend/src/components/ProjectsDashboardDropDown.tsx
@@ -52,7 +52,9 @@ const ProjectsDashboardDropDown: FC<{
{buttonDisplayName}
{selectedLabels && selectedLabels.length > 0 && (
- {selectedLabels.join(', ')}
+
+ {selectedLabels.join(', ')}
+
)}