Make sure stats output some result after one completed cycle

This commit is contained in:
emelko
2019-02-04 22:15:34 +01:00
parent 4605f5b81c
commit 7f170d06ef
+1 -1
View File
@@ -13,7 +13,7 @@ import AppText from './app-text'
export default class Stats extends Component {
render() {
const cycleLengths = cycleModule().getAllCycleLengths()
const atLeastOneCycle = cycleLengths.length > 1
const atLeastOneCycle = cycleLengths.length >= 1
let numberOfCycles
let cycleInfo
if (atLeastOneCycle) {