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
sai teja 69sai teja 69 

lightning experience rollout specialist challenge 10#

Helloo..I am getting below error repeatedly. I tried all the options. Please help.

Challenge Not yet complete... here's what's wrong: 
The Lightning component named TrailheaDX must open a link to https://developer.salesforce.com/trailheadx/, must open in a new window (using the target attribute of ui:outputurl), and must be included in the Sales app.

Component code:
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global" >
    <ui:outputurl aura:id="TrailheaDX" value="https://developer.salesforce.com/trailheadx/" label="TrailheaDX" target="_blank" />
</aura:component>


User-added image
 
Khan AnasKhan Anas (Salesforce Developers) 
Hi Sai,

Greetings to you!

I managed to solve this by doing these steps:

1. Remove the component from everywhere
2. Delete the component and recreate it with below code.
3. Add it to the Sales App utility bar.
 
<aura:component implements="flexipage:availableForAllPageTypes" access="global" >
    <ui:outputurl aura:id="TrailheaDX" value="https://developer.salesforce.com/trailheadx/" label="TrailheaDX Registration" target="_blank" />
</aura:component>

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas
sai teja 69sai teja 69
Hi Khan,

I did the above steps. but still same error..I added the component in utility items of "sales" - lightning. Is there any error possible for this?User-added image
Cintia SousaCintia Sousa
Hi guys...

I'm facing the same problem with the TrailheaDX component. I already tried to delete e configure it all again but no success.

Any other tougths I could try?

It's extremely frustrating do not finish the super badge because of this error...

Thanks!

Cintia.
Aditya PothukuchiAditya Pothukuchi
Hi All,

I am also facing the same issue as everyone facing. The error i am getting is 

Error : Challenge Not yet complete... here's what's wrong: 
The Lightning component named TrailheaDX must open a link to https://developer.salesforce.com/trailheadx/, must open in a new window (using the target attribute of ui:outputurl), and must be included in the Sales app.

My Component Code :
<aura:component implements="flexipage:availableForAllPageTypes" access="global" >
    <ui:outputURL aura:id="TrailheaDX" value="https://developer.salesforce.com/trailheadx/" label="TrailheaDX" target="_blank" />
</aura:component>

Can some please help me how to resolve this issue. Thank you in advance.

Regards,
Aditya.