Hello, Thanks for this component! I'm having the same issue as Freeman Xea

Hello,

Thanks for this component! I’m having the same issue as Freeman Xearo, however, I can’t seem to fix this. Icon is visible in DOM, but not rendered in UI… I’m using Vaadin 22 with Spring Boot 2.6.2 . In my application.properties I’ve set the package to be whitelisted:

vaadin.whitelisted-packages = com/flowingcode/addons

I’ve also tried the following notation:
com.flowingcode.addons

Neither work unfortunately. I’ve tried a clean install, pnpm install, … Any more ideas on what could be wrong?

Thanks!

Your whitelist entry is wrong. It is com/flowingcode/vaadin/addons. Or you reduce it to com/flowingcode

Thanks Stefan, that worked. The documentation on the right here is wrong though, it says: please ensure that the addon’s groupId is added to the vaadin.whitelisted-packagespropert. The groupId is com.flowingcode.addons, not com.flowingcode.vaadin.addons, which is the package structure. Is there a reason why these two are different?