Skip to content

Commit

Permalink
💄 add "closed room" to legend
Browse files Browse the repository at this point in the history
  • Loading branch information
McPringle committed Mar 30, 2024
1 parent c39f94b commit e2a786b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/java/swiss/fihlon/apus/ui/view/ConferenceView.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ private static Component createLegend() {
nextSession.getElement().getThemeList().add(LABEL_THEME);
nextSession.addClassName("next-session");

final Component legend = new Span(runningSession, nextSession);
final Component emptySession = new Span("room closed");
emptySession.getElement().getThemeList().add(LABEL_THEME);
emptySession.addClassName("empty-session");

final Component legend = new Span(runningSession, nextSession, emptySession);
legend.addClassName("legend");
return legend;
}
Expand Down

0 comments on commit e2a786b

Please sign in to comment.