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

Lightning Component not display in combobox when create a [New Lightning Component Tab]
I am creating a Lightning Component Tab:
https://trailhead.salesforce.com/modules/lex_dev_lc_vf_fundamentals/units/lex_dev_lc_vf_fundamentals_process
i had create a Lightning Component:

But not exist when add Lightning Component Tab:

Why component not display?
https://trailhead.salesforce.com/modules/lex_dev_lc_vf_fundamentals/units/lex_dev_lc_vf_fundamentals_process
i had create a Lightning Component:
But not exist when add Lightning Component Tab:
Why component not display?
To create Lightning Component Tabs : add Implements ="force:appHostable" in your code.
<aura:component implements="force:appHostable" >
<!-- your code-->
</aura:component>
Refer to this link to learn more
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/aura_add_cmp_salesforce1.htm
if it resolve your problem mark it as solved.
Thanks !
Saurabh