this repo has no description
0
fork

Configure Feed

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

Differentiate icon for group vs local

+3 -2
+1
src/components/icon.jsx
··· 105 105 month: () => import('@iconify-icons/mingcute/calendar-month-line'), 106 106 media: () => import('@iconify-icons/mingcute/photo-album-line'), 107 107 speak: () => import('@iconify-icons/mingcute/radar-line'), 108 + building: () => import('@iconify-icons/mingcute/building-5-line'), 108 109 }; 109 110 110 111 const ICONDATA = {};
+1 -1
src/components/nav-menu.jsx
··· 202 202 <Icon icon="search" size="l" /> <span>Search</span> 203 203 </MenuLink> 204 204 <MenuLink to={`/${instance}/p/l`}> 205 - <Icon icon="group" size="l" /> <span>Local</span> 205 + <Icon icon="building" size="l" /> <span>Local</span> 206 206 </MenuLink> 207 207 <MenuLink to={`/${instance}/p`}> 208 208 <Icon icon="earth" size="l" /> <span>Federated</span>
+1 -1
src/components/shortcuts-settings.jsx
··· 159 159 title: ({ local }) => (local ? 'Local' : 'Federated'), 160 160 subtitle: ({ instance }) => instance || api().instance, 161 161 path: ({ local, instance }) => `/${instance}/p${local ? '/l' : ''}`, 162 - icon: ({ local }) => (local ? 'group' : 'earth'), 162 + icon: ({ local }) => (local ? 'building' : 'earth'), 163 163 }, 164 164 trending: { 165 165 id: 'trending',