Show location in exported pdf

master
Markus Kreth 7 years ago
parent 75d6ed4f09
commit e704a4886d
  1. 3
      src/main/java/de/kreth/vaadin/clubhelper/vaadinclubhelper/ui/components/HeadComponent.java

@ -135,6 +135,9 @@ public class HeadComponent extends HorizontalLayout {
values.put(day, content);
}
content.append(ev.getCaption());
if (ev.getLocation() != null && ev.getLocation().isBlank() == false) {
content.append(" (").append(ev.getLocation()).append(")");
}
});
}

Loading…
Cancel
Save