better checks in time conversion

This commit is contained in:
Nicolas Constant 2018-09-19 01:23:50 -04:00
parent 097d6f555a
commit da0b013798
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 2 deletions

View File

@ -23,8 +23,7 @@ export class StatusComponent implements OnInit {
if (timeDelta < 60) {
return `${timeDelta | 0}s`;
}
if (timeDelta < 60 * 60) {
} else if (timeDelta < 60 * 60) {
return `${timeDelta / 60 | 0}m`;
} else if (timeDelta < 60 * 60 * 24) {
return `${timeDelta / (60 * 60)| 0}h`;