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

Merge pull request #1284 from BoostIO/fix-ci-error

Fix Ci error
This commit is contained in:
Kazz Yokomizo
2017-12-12 17:29:14 +09:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ const TodoListPercentage = ({
<div styleName='percentageBar' style={{display: isNaN(percentageOfTodo) ? 'none' : ''}}>
<div styleName='progressBar' style={{width: `${percentageOfTodo}%`}}>
<div styleName='progressBarInner'>
<p styleName='percentageText'>{percentageOfTodo}%</p>
<p styleName='percentageText'>{percentageOfTodo}%</p>
</div>
</div>
</div>

View File

@@ -392,8 +392,8 @@ class MarkdownNoteDetail extends React.Component {
</div>
<StatusBar
{..._.pick(this.props, ['config', 'location', 'dispatch'])}
date={note.updatedAt}
{..._.pick(this.props, ['config', 'location', 'dispatch'])}
date={note.updatedAt}
/>
</div>
)