Skip to content

Commit

Permalink
Use integer elapsed time in OpenTimesTable
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Sep 19, 2024
1 parent 0d66539 commit fe0bac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/fills/[[...pk]]/tables.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export function OpenTimesTable(props: { valve_times: ValveTimesType | null }) {
valve: cam,
open_time: toTime(open_time),
close_time: toTime(close_time),
elapsed: elapsed.toFixed(1),
elapsed: elapsed.toFixed(0),
timeout: props.valve_times[cam].timed_out ? (
<IconCheck
style={{ verticalAlign: 'middle' }}
Expand Down

0 comments on commit fe0bac2

Please sign in to comment.