I’m developing a plugin, and when implementing an Action, the symbols from the Design Library are not found.
Does anyone know where I can look up the icon list?
Jenkins setup: 2.258.1
I’m developing a plugin, and when implementing an Action, the symbols from the Design Library are not found.
Does anyone know where I can look up the icon list?
Jenkins setup: 2.258.1
When using ionicons the list of icons is here:
Select an icon there, the name shown there is then used with symbol-<name> plugin-ionicons-api. Use this in the getIconFilename of the action. Or with <l:icon src="symbol-<name> plugin-ionicons-api" class="icon-md"/> in jelly files
I was using symbol- without plugin-ionicons-api, which is why it couldn’t be found.
Thank you Markus!!