1
0
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:
Sosuke Suzuki
2017-10-03 02:56:44 +09:00
parent 0ca87ea407
commit e300b33a4f

View File

@@ -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
}) })