Hi,
I am using Vaadin24 along with Spring. When I attempt to add a chip-field using this code.
ChipField<String> chf = new ChipField<>("hello There");
chf.setWidth("90%");
chf.setAvailableItems(Arrays.asList("Tapestry Member", "Linked Account"));
chf.addSelectedItem("Tapestry Member");
chf.addSelectedItem("Linked Account");
chf.setThemeName("styled-demo");
this.add( chf );
The component is not shown - I do see the element in the DOM.
I also see the following errors in the browser console:
Any thoughts as to what might be happening?