👁️
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

add color sort

+10
+10
src/routes/cards/index.tsx
··· 154 154 label: "Rarity (Common to Mythic)", 155 155 sort: { field: "rarity", direction: "asc" }, 156 156 }, 157 + { 158 + value: "color-asc", 159 + label: "Color (WUBRG)", 160 + sort: { field: "color", direction: "asc" }, 161 + }, 162 + { 163 + value: "color-desc", 164 + label: "Color (GRBUW)", 165 + sort: { field: "color", direction: "desc" }, 166 + }, 157 167 ]; 158 168 159 169 const DEFAULT_SORT = SORT_OPTIONS[0];