1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

Add option to show only related tags

This commit is contained in:
bimlas
2018-04-11 08:14:28 +02:00
parent c02b91dfd4
commit 84925b24b5
2 changed files with 16 additions and 0 deletions

View File

@@ -152,6 +152,11 @@ class SideNav extends React.Component {
if (config.sortTagsBy === 'COUNTER') {
tagList = _.sortBy(tagList, item => (0 - item.size))
}
if (config.ui.showOnlyRelatedTags && (relatedTags.size > 0)) {
tagList = tagList.filter(
tag => tag.related
)
}
return (
tagList.map(tag => {
return (