Update DebugTab.tsx
Browse files
app/components/settings/debug/DebugTab.tsx
CHANGED
|
@@ -1087,30 +1087,36 @@ export default function DebugTab() {
|
|
| 1087 |
<div className="i-ph:github text-bolt-elements-textSecondary w-4 h-4" />
|
| 1088 |
<span className="text-bolt-elements-textSecondary">GitHub Repository:</span>
|
| 1089 |
</div>
|
| 1090 |
-
<div className="pl-6 space-y-
|
| 1091 |
-
<div className="
|
| 1092 |
-
|
| 1093 |
-
|
| 1094 |
-
|
| 1095 |
-
|
| 1096 |
-
|
| 1097 |
-
|
| 1098 |
-
|
| 1099 |
-
|
| 1100 |
-
|
| 1101 |
-
|
| 1102 |
-
|
| 1103 |
-
|
| 1104 |
-
|
| 1105 |
-
</div>
|
| 1106 |
-
<div className="text-xs text-bolt-elements-textPrimary">
|
| 1107 |
-
Last Update: {webAppInfo.repoInfo.lastUpdate}
|
| 1108 |
-
</div>
|
| 1109 |
-
<div className="text-xs text-bolt-elements-textPrimary">
|
| 1110 |
-
Owner: {webAppInfo.repoInfo.owner.login}
|
| 1111 |
</div>
|
| 1112 |
-
|
| 1113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1114 |
</div>
|
| 1115 |
</div>
|
| 1116 |
</div>
|
|
|
|
| 1087 |
<div className="i-ph:github text-bolt-elements-textSecondary w-4 h-4" />
|
| 1088 |
<span className="text-bolt-elements-textSecondary">GitHub Repository:</span>
|
| 1089 |
</div>
|
| 1090 |
+
<div className="pl-6 space-y-3">
|
| 1091 |
+
<div className="flex items-center gap-3">
|
| 1092 |
+
<img
|
| 1093 |
+
src={webAppInfo.repoInfo.owner.avatarUrl}
|
| 1094 |
+
alt={`${webAppInfo.repoInfo.owner.login}'s avatar`}
|
| 1095 |
+
className="w-8 h-8 rounded-full border border-[#E5E5E5] dark:border-[#1A1A1A]"
|
| 1096 |
+
/>
|
| 1097 |
+
<div className="space-y-0.5">
|
| 1098 |
+
<div className="text-xs text-bolt-elements-textPrimary font-medium">
|
| 1099 |
+
Owner: {webAppInfo.repoInfo.owner.login}
|
| 1100 |
+
</div>
|
| 1101 |
+
<div className="text-xs text-bolt-elements-textSecondary">
|
| 1102 |
+
Last Update: {new Date(webAppInfo.repoInfo.lastUpdate).toLocaleDateString()}
|
| 1103 |
+
</div>
|
| 1104 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1105 |
</div>
|
| 1106 |
+
|
| 1107 |
+
<div className="grid grid-cols-3 gap-2 mt-2">
|
| 1108 |
+
<div className="flex items-center gap-1 text-xs text-bolt-elements-textSecondary">
|
| 1109 |
+
<div className="i-ph:star text-yellow-500 w-4 h-4" />
|
| 1110 |
+
{webAppInfo.repoInfo.stars.toLocaleString()} stars
|
| 1111 |
+
</div>
|
| 1112 |
+
<div className="flex items-center gap-1 text-xs text-bolt-elements-textSecondary">
|
| 1113 |
+
<div className="i-ph:git-fork text-blue-500 w-4 h-4" />
|
| 1114 |
+
{webAppInfo.repoInfo.forks.toLocaleString()} forks
|
| 1115 |
+
</div>
|
| 1116 |
+
<div className="flex items-center gap-1 text-xs text-bolt-elements-textSecondary">
|
| 1117 |
+
<div className="i-ph:warning-circle text-red-500 w-4 h-4" />
|
| 1118 |
+
{webAppInfo.repoInfo.openIssues.toLocaleString()} issues
|
| 1119 |
+
</div>
|
| 1120 |
</div>
|
| 1121 |
</div>
|
| 1122 |
</div>
|