UNSOLVED Three module issues from a new user
-
@skyfall oh, I see you have to call out fa-brands
hm…
maybe if the specific string has more than 1 word
like “fa-brands fa-iconname”
then you use as is (full string)
otherwise you use the default approach of appending the name to the ‘fa-’ already there// if there is a space in the name, 'collectionname iconname' use the string as is // for example "fa-brands fa-canadian-maple-leaf" // else use the current approach symbol.className =(s.indexOf(' ')>0?s:( "fas fa-fw fa-" +s));
this would let other prefix specific icons in, and not break old…
-
Yeah, there’s a few things to try and we can make it work without breaking default notation
I think one thing to keep in mind is MM seems to refer to them as “fab” instead of fa-brands; not sure where that translation happens.
I did see some of the commits from January that initially addresses this. I’m mobile right now so I don’t have the references, but it looked like this convention is used in more places than just calendar. Should be the same fix for all instances though.
I’ll experiment with it a bit too when I sit down to look.
-
@skyfall I found this post exactly because of that icon, lol
Have anyone made it work? changing fas to fal does the job for the Canadian maple leaf icon but breaks the others