mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
fix a mistake in function naming
This commit is contained in:
@@ -87,7 +87,7 @@ class SideNav extends React.Component {
|
|||||||
<p>Tags</p>
|
<p>Tags</p>
|
||||||
</div>
|
</div>
|
||||||
<div styleName='tagList'>
|
<div styleName='tagList'>
|
||||||
{this.folderListComponent(data)}
|
{this.tagListComponent(data)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
@@ -96,7 +96,7 @@ class SideNav extends React.Component {
|
|||||||
return component
|
return component
|
||||||
}
|
}
|
||||||
|
|
||||||
folderListComponent (data) {
|
tagListComponent (data) {
|
||||||
let tagList = data.tagNoteMap.map((tag, key) => {
|
let tagList = data.tagNoteMap.map((tag, key) => {
|
||||||
return key
|
return key
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user