Coral 3 Select dropdown doesn't render icon when using SVG reference
Hi, I'm using a select dropdown menu and I need to render an icon and text for each option.
When I use a SVG reference the icon is not shown in the dialog
<selectIcon
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/select"
fieldLabel="Select icon"
name="./selectIcon">
<items jcr:primaryType="nt:unstructured">
<default
jcr:primaryType="nt:unstructured"
text="No icon"
value="null"/>
<icona1
jcr:primaryType="nt:unstructured"
icon="/content/dam/project/filename.svg#reference"
text="text"
value="/content/dam/project/filename.svg#reference"/>
<icona2
jcr:primaryType="nt:unstructured"
icon="/content/dam/project/filename.svg#reference"
text="text"
value="/content/dam/project/filename.svg#reference"/>
</items>
</selectIcon>
If I try to render a file that doesn't use the #reference, the icon is shown in the dropdown in the dialog.
Any advice?
