This repository has no description
0

Configure Feed

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

feat: "all cards" icon

+6 -2
+3 -1
src/webapp/features/cards/components/cardFilters/CardFilters.tsx
··· 19 19 import { CiGrid2H } from 'react-icons/ci'; 20 20 import { useUserSettings } from '@/features/settings/lib/queries/useUserSettings'; 21 21 import { IoMdCheckmark } from 'react-icons/io'; 22 + import { FaAsterisk } from 'react-icons/fa'; 22 23 23 24 // context 24 25 interface FilterContextValue { ··· 152 153 }; 153 154 154 155 const SelectedIcon = 155 - optimisticType === null ? MdFilterList : getUrlTypeIcon(optimisticType); 156 + optimisticType === null ? FaAsterisk : getUrlTypeIcon(optimisticType); 156 157 157 158 return ( 158 159 <Fragment> ··· 175 176 size="xs" 176 177 color="lime" 177 178 variant={optimisticType === null ? 'filled' : 'light'} 179 + leftSection={<FaAsterisk />} 178 180 onClick={() => onChange()} 179 181 > 180 182 All Cards
+3 -1
src/webapp/features/feeds/components/feedControls/FeedControls.tsx
··· 9 9 import { getUrlTypeIcon } from '@/lib/utils/icon'; 10 10 import { upperFirst } from '@mantine/hooks'; 11 11 import { MdFilterList } from 'react-icons/md'; 12 + import { FaAsterisk } from 'react-icons/fa'; 12 13 import { LinkButton } from '@/components/link/MantineLink'; 13 14 import { useUserSettings } from '@/features/settings/lib/queries/useUserSettings'; 14 15 import { ··· 72 73 73 74 const SelectedTypeIcon = 74 75 settings.feedUrlType === null 75 - ? MdFilterList 76 + ? FaAsterisk 76 77 : getUrlTypeIcon(settings.feedUrlType); 77 78 78 79 return ( ··· 215 216 size="xs" 216 217 color="lime" 217 218 variant={settings.feedUrlType === null ? 'filled' : 'light'} 219 + leftSection={<FaAsterisk />} 218 220 onClick={() => handleTypeClick()} 219 221 > 220 222 All Cards