Skip to content

Commit

Permalink
SAK-44582 SIGNUP - Signup isn't available for students (sakaiproject#…
Browse files Browse the repository at this point in the history
  • Loading branch information
josecebe authored Nov 5, 2020
1 parent afa01ab commit 7f4525e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public NewSignupMeetingBean() {
}

public List<SelectItem> getSlots() {
slots = IntStream.range(0, numberOfSlots).mapToObj(i -> new SelectItem(i, String.valueOf(i))).collect(Collectors.toList());
slots = IntStream.range(1, numberOfSlots + 1).mapToObj(i -> new SelectItem(i, String.valueOf(i))).collect(Collectors.toList());
return slots;
}

Expand Down

0 comments on commit 7f4525e

Please sign in to comment.