Habiddiaz
(Habid Diaz)
June 9, 2025, 1:18pm
1
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
(Melwyn Turbant)
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
Hello everyone, we just released a fix for this issue!
Let us know if it’s working properly.
You can read more about all changes for this release here:
Hey everyone
This release brings you some big, long-awaited updates:
More context-aware AI
An improved WeWeb Figma plugin that’s more accurate and powerful
Progressive data streaming
Check out the details below
WeWeb AI: more accuracy, less rework
Over the past few months, some WeWeb AI requests on large applications returned errors like “Selected content too large” or “Input is too long for requested model.”
With this update, t…