Skip to content

Commit

Permalink
Merge branch 'unstable' of https://github.com/CyferShepard/Jellystat
Browse files Browse the repository at this point in the history
…into unstable
  • Loading branch information
CyferShepard committed Jan 3, 2025
2 parents 3242e7c + 9ee7f23 commit d08c6b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/components/activity/stream_info.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ function Row(logs) {

<TableRow>
<TableCell className="py-0 pb-1" ><Trans i18nKey={"FRAMERATE"}/></TableCell>
<TableCell className="py-0 pb-1" >{data.MediaStreams ? parseFloat(data.MediaStreams.find(stream => stream.Type === 'Video')?.RealFrameRate).toFixed(2) : '-'}</TableCell>
<TableCell className="py-0 pb-1" >{data.MediaStreams ? parseFloat(data.MediaStreams.find(stream => stream.Type === 'Video')?.RealFrameRate).toFixed(2) : '-'}</TableCell>
<TableCell className="py-0 pb-1" >{data.MediaStreams ? data.MediaStreams.find(stream => stream.Type === 'Video') ? parseFloat(data.MediaStreams.find(stream => stream.Type === 'Video').RealFrameRate.toFixed(2)) : '-' : '-'}</TableCell>
<TableCell className="py-0 pb-1" >{data.MediaStreams ? data.MediaStreams.find(stream => stream.Type === 'Video') ? parseFloat(data.MediaStreams.find(stream => stream.Type === 'Video').RealFrameRate.toFixed(2)) : '-' : '-'}</TableCell>
</TableRow>

<TableRow>
Expand Down

0 comments on commit d08c6b8

Please sign in to comment.