What are you trying to accomplish
I want to hide unnecessary apps (for example, Insights) inside the Apps tab. Is there a way to do that or to configure it?
If there are multiple plugins registered in the appTab
, they are sometimes rendered in an inconsistent order. Can I define a strict order of plugins registered there (e.g., I would want the Catalog to always be the first, then another plugin named Plugin2, and then Plugin3)?
Screenshots or video link
Hi lukasz.tarasiuk,
I hope you are doing well.
We have these customizable plugin options here: Extending Builder.io with Plugins - Builder.io
Please go through it and let me know if you have any questions. I’d be happy to help.
Thanks,
Hi, this documentation does not show how you can set the order of the tabs. For example, I have this code:
Builder.register("appTab", {
name: "ClinicalTrials",
path: "clinical-trials",
priority: 1000,
icon: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJ3aGl0ZSI+PHJlY3QgeD0iOSIgeT0iNCIgd2lkdGg9IjYiIGhlaWdodD0iMTYiIHJ4PSIxIi8+PHJlY3QgeD0iNCIgeT0iOSIgd2lkdGg9IjE2IiBoZWlnaHQ9IjYiIHJ4PSIxIi8+PC9zdmc+",
component: ClinicalTrialAdminPlugin,
});
And the tab is showing up at the very top of the appTab
How can i make this show up at the bottom?