alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: "all cards" icon
author
Pouria Delfanazari
date
2 months ago
(May 8, 2026, 11:02 AM -0700)
commit
dc2c9c8c
dc2c9c8ca76fce51dc4dbe5e3f23337deb5f19c2
parent
3381be3b
3381be3bdb44c1fbd4be602764c3c043bc8deceb
+6
-2
2 changed files
Expand all
Collapse all
Unified
Split
src
webapp
features
cards
components
cardFilters
CardFilters.tsx
feeds
components
feedControls
FeedControls.tsx
+3
-1
src/webapp/features/cards/components/cardFilters/CardFilters.tsx
View file
Reviewed
···
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
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
155
-
optimisticType === null ? MdFilterList : getUrlTypeIcon(optimisticType);
156
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
179
+
leftSection={<FaAsterisk />}
178
180
onClick={() => onChange()}
179
181
>
180
182
All Cards
+3
-1
src/webapp/features/feeds/components/feedControls/FeedControls.tsx
View file
Reviewed
···
9
9
import { getUrlTypeIcon } from '@/lib/utils/icon';
10
10
import { upperFirst } from '@mantine/hooks';
11
11
import { MdFilterList } from 'react-icons/md';
12
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
75
-
? MdFilterList
76
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
219
+
leftSection={<FaAsterisk />}
218
220
onClick={() => handleTypeClick()}
219
221
>
220
222
All Cards