Skip to content

Commit

Permalink
SAK-50254 Samigo setting default page size to min of 20 (sakaiproject…
Browse files Browse the repository at this point in the history
  • Loading branch information
maurercw authored Jul 30, 2024
1 parent e321382 commit 524ef95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public class QuestionScoresBean implements Serializable, PhaseAware {
@Getter @Setter
private int firstRow;
@Getter @Setter
private int maxDisplayedRows;
private int maxDisplayedRows = 20;
@Getter @Setter
private int dataRows;
@Getter @Setter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class SubmissionStatusBean implements Serializable, PhaseAware {

// Paging.
private int firstScoreRow;
private int maxDisplayedScoreRows;
private int maxDisplayedScoreRows = 20;
private int scoreDataRows;

// Searching
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public class TotalScoresBean implements Serializable, PhaseAware {

// Paging.
private int firstScoreRow;
private int maxDisplayedScoreRows;
private int maxDisplayedScoreRows = 20;
private int scoreDataRows;

// Searching
Expand Down

0 comments on commit 524ef95

Please sign in to comment.