diff options
Diffstat (limited to 'components/Tweaks')
-rw-r--r-- | components/Tweaks/FilterPanel.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/components/Tweaks/FilterPanel.tsx b/components/Tweaks/FilterPanel.tsx index 827b8dd..e375e31 100644 --- a/components/Tweaks/FilterPanel.tsx +++ b/components/Tweaks/FilterPanel.tsx @@ -123,6 +123,17 @@ const FilterPanel = (props: FilterPanelProps) => { ></Switch> </Flex> <Flex justifyContent="space-between"> + <Text>Org-noter pages</Text> + <Switch + onChange={() => { + setFilter((curr: typeof initialFilter) => { + return { ...curr, noter: !curr.noter } + }) + }} + isChecked={filter.noter} + ></Switch> + </Flex> + <Flex justifyContent="space-between"> <Text>Citations without note files</Text> <Switch onChange={() => { |