Skip to content

Commit

Permalink
Fix missing "start" status screen
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderfrangos committed Dec 30, 2019
1 parent dea2129 commit ae56c95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/FileList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default class FileList extends PureComponent {
} else if(this.props.stats.saving > 0) {
return (<Scanning title="Saving..." description={ `${this.props.stats.saving} file${(this.props.stats.saving > 1 ? "s" : "")}` } />)
} else {
if (window.fileCounts.total > 0) {
if (this.props.stats.total > 0) {
return (
<div className="page page--files show">
<div className="page--files--list">
Expand Down

0 comments on commit ae56c95

Please sign in to comment.