Skip to content

Commit

Permalink
Merge r/16.x into r/17.x
Browse files Browse the repository at this point in the history
  • Loading branch information
lkiesow committed Dec 14, 2024
2 parents 45819e6 + fe42cb0 commit 00e7218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/lti/src/components/Series.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class TranslatedSeries extends React.Component<SeriesProps, SeriesState> {
const headingOpts = {
range: {
begin: Math.min(sr.offset + 1, sr.total),
end: sr.offset + sr.limit
end: Math.min(sr.offset + sr.limit, sr.total)
},
total: sr.total
};
Expand Down

0 comments on commit 00e7218

Please sign in to comment.