We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 661b7b0 commit 808f613Copy full SHA for 808f613
1 file changed
src/pages/options/routes/ScriptList.tsx
@@ -286,7 +286,7 @@ function ScriptList() {
286
if (!a.icon && b.icon) return 1;
287
return a.match.localeCompare(b.match);
288
})
289
- .slice(0, 5)
+ .slice(0, 4)
290
.map((fav) => (
291
<Avatar
292
key={fav.match}
@@ -309,6 +309,7 @@ function ScriptList() {
309
)}
310
</Avatar>
311
))}
312
+ {item.favorite && item.favorite.length > 4 && "..."}
313
</Avatar.Group>
314
</>
315
);
0 commit comments