function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
dai tran 6dai tran 6 

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:
User-added image
But not exist when add Lightning Component Tab:
User-added image
Why component not display?
Best Answer chosen by dai tran 6
Saurabh TyagiSaurabh Tyagi
Hi Dai,

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