Skip to content

Commit

Permalink
fix(topbar): typo (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
crimx committed May 8, 2021
1 parent 1831e4d commit 79bf7c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/renderer-app/src/components/TopBarRecordStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class TopBarRecordStatus extends React.PureComponent<
const m = Math.floor((seconds % 3600) / 60);
const s = Math.floor((seconds % 3600) % 60);
return (
(h > 0 ? String(s).padStart(2, "0") + ":" : "") +
(h > 0 ? String(h).padStart(2, "0") + ":" : "") +
String(m).padStart(2, "0") +
":" +
String(s).padStart(2, "0")
Expand Down

0 comments on commit 79bf7c3

Please sign in to comment.