Skip to content

Commit

Permalink
Fix Time Alignment Popup (#577)
Browse files Browse the repository at this point in the history
Co-authored-by: Cody Baker <[email protected]>
  • Loading branch information
garrettmflynn and CodyCBakerPhD authored Jan 30, 2024
1 parent 4e162d0 commit 246a440
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export class GuidedSourceDataPage extends ManagedPage {

const flatTimes = Object.values(results)
.map((interfaceTimestamps) => {
[interfaceTimestamps[0], interfaceTimestamps.slice(-1)[0]];
return [interfaceTimestamps[0], interfaceTimestamps.slice(-1)[0]];
})
.flat()
.filter((timestamp) => !isNaN(timestamp));
Expand Down

0 comments on commit 246a440

Please sign in to comment.