mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 01:36:22 +00:00
Fix highlighting of active tag
The currently selected tag was not highlighted in the list. Before:  After: 
This commit is contained in:
@@ -139,7 +139,7 @@ class SideNav extends React.Component {
|
||||
<TagListItem
|
||||
name={tag.name}
|
||||
handleClickTagListItem={this.handleClickTagListItem.bind(this)}
|
||||
isActive={this.getTagActive(location.pathname, tag)}
|
||||
isActive={this.getTagActive(location.pathname, tag.name)}
|
||||
key={tag.name}
|
||||
count={tag.size}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user