Search interface for Tangled running on a Slice

fix for other category

Changed files
+5 -5
src
+1 -1
src/components/Layout.tsx
··· 3 3 const Layout = ({ 4 4 children, 5 5 head, 6 - title = "TANGLED://SEARCH_v1.3.0", 6 + title = "TANGLED://SEARCH_v1.3.1", 7 7 }: { 8 8 children: ComponentChildren; 9 9 head?: ComponentChildren;
+3 -3
src/components/RepoCard.tsx
··· 165 165 <div 166 166 style={{ 167 167 width: `${lang.percentage}%`, 168 - backgroundColor: githubColors.get(lang.name)?.color || "#888888", 168 + backgroundColor: githubColors.get(lang.name || "Other")?.color || "#888888", 169 169 height: "100%", 170 170 }} 171 171 /> ··· 194 194 width: "10px", 195 195 height: "10px", 196 196 borderRadius: "2px", 197 - backgroundColor: githubColors.get(lang.name)?.color || "#888888", 197 + backgroundColor: githubColors.get(lang.name || "Other")?.color || "#888888", 198 198 }} 199 199 /> 200 200 <span style={{ color: "#94a3b8", display: "flex", gap: "8px" }}> 201 - <span>{lang.name}</span> 201 + <span>{lang.name || "Other"}</span> 202 202 <span>{lang.percentage.toFixed(1)}%</span> 203 203 </span> 204 204 </div>
+1 -1
src/components/SearchPage.tsx
··· 23 23 TANGLED<span class="text-pink-400">.SH</span> 24 24 </h1> 25 25 <div class="text-green-400 text-xs sm:text-sm font-light"> 26 - REPO_SEARCH v1.3.0 // AT_PROTOCOL_INTERFACE 26 + REPO_SEARCH v1.3.1 // AT_PROTOCOL_INTERFACE 27 27 </div> 28 28 </div> 29 29