You need to sign in to do that
Don't have an account?

Lightning component not showing in App Builder
Running into a strange issue -- I have developed several lightning components that are displayed in Lightning App Builder. I added a second one that has all the same "implements=" as the other ones, but for some reason is not showing as an option in App Builder. Given the fact that other components are showing up - any ideas/thoughts on things to check? Here is my aura:component line:
<aura:component controller="SecureSiteController" implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes" access="global">
I had the same issue, when lightning component has errors. That time it doesnt show on the lightning app builder.
All Answers
I had the same issue, when lightning component has errors. That time it doesnt show on the lightning app builder.
I had the same. I stripped the code down to the bare minimum and it appeared so now to track down the error.
Many thanks.
And seasons best wishes!
Setup->Custom code->Lightning Componets
but not in the listing in the lightining page creation list of available lighting custom components
to resolve I had to change the componet (.cmp) source to this...
<aura:component implements="flexipage:availableForAllPageTypes" access="global" >
Thank you.
If this is not set to True component wont show up in Lightning Components in Org
However for Lightning Web Components that is good advice.
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata" fqn="CourseInfoCustomStyle">
For anyone confused - LWC and Aura are two different ways to create Lightning Components. It gets confusing because "Lightning Web Component" has "Lightning Component" in the name, so you may assume the terms are interchangeable.
One of the key giveaways when someone doesn't specify which kind of "Lightning Component" they're building is the tags; LWC doesn't use the <aura:component> tags, it uses <template> tags.
In my case I just saved the component again, after that the component show in app builder.