Skip to content

Commit

Permalink
refactor: make dashboard implement hassize (#6661)
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur-vaadin committed Oct 10, 2024
1 parent df661e3 commit cd72fd8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import com.vaadin.flow.component.AttachEvent;
import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.ComponentEventListener;
import com.vaadin.flow.component.HasSize;
import com.vaadin.flow.component.Tag;
import com.vaadin.flow.component.dependency.JsModule;
import com.vaadin.flow.component.dependency.NpmPackage;
Expand All @@ -41,7 +42,7 @@
@JsModule("@vaadin/dashboard/src/vaadin-dashboard.js")
@JsModule("./flow-component-renderer.js")
// @NpmPackage(value = "@vaadin/dashboard", version = "24.6.0-alpha0")
public class Dashboard extends Component implements HasWidgets {
public class Dashboard extends Component implements HasWidgets, HasSize {

private final List<Component> childrenComponents = new ArrayList<>();

Expand Down

0 comments on commit cd72fd8

Please sign in to comment.