• Pruthvi Ponnaganti
  • NEWBIE
  • 20 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
Hello

Trying to verify a challenge but hitting the following error:
Challenge Not yet complete... here's what's wrong: Could not find the correct dashboard state. Please verify the endpoint and results are correct. I have connected Trailhead to my dev org but perhaps since the dev org is in Swedish it is unable to verify the work I did?

Trail:
https://trailhead.salesforce.com/modules/wave_dashboard_designer_basics/units/wave_add_key_metrics_evaluate_business

Dev org:
https://eu11.salesforce.com/analytics/wave/wave.apexp?tsid=02u0Y0000013781
philip@wavey.se

Perhaps something else I can try?
Hi, I am having trouble with the "Attributes and Expressions" module from trailhead.

Here is the challenge:
Create a Lightning Component to display a single item for your packing list.
  • Create a component called campingListItem that displays the name (ui:outputText) and the three custom fields using the appropriate output components.
  • Add an attribute named 'item' for type Camping_Item__c.
I created an component named campingListItem and this is the code:
<aura:component >
    <aura:attribute name="item" type="<my_domain>__Camping_Item__c"/>
    
    <ui:outputText value="{!v.item.Name}"/>
    <ui:outputCheckbox value="{!v.item.<my_domain>__Packed__c}"/>
    <ui:outputCurrency  value="{!v.item.<my_domain>__Price__c}"/>
    <ui:outputNumber value="{!v.item.<my_domain>__Quantity__c}"/>
</aura:component>

The error that I am getting is: "Challenge Not yet complete... here's what's wrong: 
The packingListItem Lightning Component's attribute tag doesn't exist or its attributes are not set correctly."

With this, I tried to create another component, with the name "packingListItem", but It didn't work.

Can anyone help me?

Thanks,