mirror of https://github.com/buster-so/buster.git
Merge pull request #1041 from buster-so/devin/BUS-1874-1758572369
Remove non-functional collections filter options (BUS-1874)
This commit is contained in:
commit
6b98564841
|
@ -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<{
|
||||
|
|
|
@ -46,18 +46,6 @@ const filters: SegmentedItem<string>[] = [
|
|||
label: 'All ',
|
||||
value: JSON.stringify({}),
|
||||
},
|
||||
{
|
||||
label: 'My dashboards',
|
||||
value: JSON.stringify({
|
||||
only_my_dashboards: true,
|
||||
}),
|
||||
},
|
||||
{
|
||||
label: 'Shared with me',
|
||||
value: JSON.stringify({
|
||||
shared_with_me: true,
|
||||
}),
|
||||
},
|
||||
];
|
||||
|
||||
const DashboardFilters: React.FC<{
|
||||
|
|
Loading…
Reference in New Issue