Skip to content

Commit

Permalink
#222 fixing java compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
vaadin-miki committed Sep 3, 2020
1 parent ec2fcfc commit 347f857
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private DemoComponentFactory() {
new SimpleButtonState("Are you sure?", VaadinIcon.INFO_CIRCLE.create()),
new SimpleButtonState("Really navigate away?", VaadinIcon.INFO.create()).withThemeVariant(ButtonVariant.LUMO_ERROR)
).withId("multi-click-button"));
final GridSelect<SuperFieldsGridItem> gridSelect = new GridSelect<>(SuperFieldsGridItem.class, true);
final GridSelect<SuperFieldsGridItem> gridSelect = new GridSelect<SuperFieldsGridItem>(SuperFieldsGridItem.class, true);
this.components.put(GridSelect.class, gridSelect); // note: extra config below to include all fields
this.components.put(ComponentObserver.class, new ComponentObserver());
this.components.put(UnloadObserver.class, UnloadObserver.get().withoutQueryingOnUnload());
Expand Down

0 comments on commit 347f857

Please sign in to comment.