We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf9bc51 commit 5365f81Copy full SHA for 5365f81
src/test/java/com/flowingcode/vaadin/addons/chipfield/ChipfieldDemoView.java
@@ -33,6 +33,8 @@ public ChipfieldDemoView() {
33
layout.setSizeFull();
34
IFrame iframe = new IFrame();
35
iframe.getElement().setAttribute("frameborder", "0");
36
+ iframe.setMinHeight("0");
37
+ iframe.setMinWidth("0");
38
iframe.getElement().setAttribute("srcdoc", getSrcdoc(DATAPROVIDER_SOURCE));
39
iframe.setSizeFull();
40
layout.addToSecondary(iframe);
@@ -54,7 +56,6 @@ public ChipfieldDemoView() {
54
56
} else {
55
57
layout.setOrientation(Orientation.VERTICAL);
58
}
- layout.setSplitterPosition(50);
59
layout.getPrimaryComponent().getElement().setAttribute("style", "width: 100%; height: 100%");
60
61
});
0 commit comments