The rich text element options are not displayed, it seems to be an icon error, which I have already seen in other elements.
Can it be a bug?
How can I fix it?
Checking, I only get this error in this project, I guess it is because the icons are associated with a library that no longer exists but comes by default that icon library.
Hi Habid, welcome to the community
Indeed it seems to be an issue with deprecated icons for this project.
I recommend that you try to either manually update specific icons, the icon library or the rich text element.
Let me know if either of those works.
1 Like
Melwyn
August 11, 2025, 10:33pm
3
In case someone is looking for a concrete example, this is what I did to fix the icon issue not showing in the menu (rich text):
Create a workflow that runs On App Load.
Create a Custom Javascript node in the workflow.
Paste this in the code to import the FontAwesome Icon Library when the App Loads.
if(!window["scp-loading-50478037-586f-4f2d-92b9-bb1ed3c1de57"]) {
window["scp-loading-50478037-586f-4f2d-92b9-bb1ed3c1de57"] = true;
let doc;
/* Adding script from https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@7.0.0/js/all.min.js */
doc = document.createElement('script');
doc.src = 'https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@7.0.0/js/all.min.js';
document.body.appendChild(doc);
}
Kudos goes to @Bruno for his post here .
2 Likes