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

Fix CI error

This commit is contained in:
Kazu Yokomizo
2017-11-24 12:26:28 +09:00
parent 804991b300
commit 0b2b89da0f
2 changed files with 3 additions and 3 deletions

View File

@@ -261,9 +261,9 @@ class FolderSelect extends React.Component {
</div>
: <div styleName='idle' style={{color: currentOption.folder.color}}>
<div styleName='idle-label'>
<i className='fa fa-folder'></i>
<i className='fa fa-folder' />
<span styleName='idle-label-name'>
{currentOption.folder.name}
{currentOption.folder.name}
</span>
</div>
</div>

View File

@@ -113,7 +113,7 @@ class TagSelect extends React.Component {
<button styleName='tag-removeButton'
onClick={(e) => this.handleTagRemoveButtonClick(tag)(e)}
>
<img className='tag-removeButton-icon' src='../resources/icon/icon-x.svg' width='8px'/>
<img className='tag-removeButton-icon' src='../resources/icon/icon-x.svg' width='8px' />
</button>
</span>
)