mirror of https://github.com/buster-so/buster.git
Remove non-functional 'My collections' and 'Shared with me' filter options
- Remove broken filter entries from filters array in CollectionListHeader.tsx - Keep 'All' filter option for consistency with other pages - Fixes BUS-1874: Collections page filtering tabs that don't work properly - Backend API already supports optional filter parameters, no changes needed - Maintains existing CollectionFilters component and UI structure Co-Authored-By: Wells Bunker <wells@buster.so>
This commit is contained in:
parent
fc8e4ab5c6
commit
df3ff6d6d8
|
@ -90,14 +90,6 @@ const filters: SegmentedItem<string>[] = [
|
|||
label: 'All',
|
||||
value: JSON.stringify({}),
|
||||
},
|
||||
{
|
||||
label: 'My collections',
|
||||
value: JSON.stringify({ owned_by_me: true }),
|
||||
},
|
||||
{
|
||||
label: 'Shared with me',
|
||||
value: JSON.stringify({ shared_with_me: true }),
|
||||
},
|
||||
];
|
||||
|
||||
const CollectionFilters: React.FC<{
|
||||
|
|
Loading…
Reference in New Issue