• Hetile Mabunda 8
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 1
    Questions
  • 2
    Replies
Hi!

I'm trying to complete the challenge: Create a basic prototype of a Lightning app using Base Lightning Components and the Lightning Design System but keep getting this error: Challenge Not yet complete... here's what's wrong: Could not find a component named 'ResultsSection'.

screenshot of record page builder


This is the code I used:
    <aura:component implements="force:appHostable,
    flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,
    force:hasRecordId,forceCommunity:availableForAllPageTypes,
    force:lightningQuickAction" access="global" >
      <div class="slds-card">
        <h2 class="slds-text-heading--medium slds-p-left_small slds-p-vertical--medium">
          Accounts
        </h2>
        <div class="slds-grid">
           <ul class="slds-col slds-size--1-of-1">
      <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
            Compass Construction Inc.
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
            <div class="slds-tile__detail slds-text-body--small">
              <dl class="slds-list--horizontal slds-wrap">  <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                <dd class="slds-item--detail slds-truncate">(123) 456-7890</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Website:</dt>
                <dd class="slds-item--detail slds-truncate">compassinc@construction.com</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Account Owner:</dt>
                <dd class="slds-item--detail slds-truncate">Amelia Abbott</dd>
              </dl>
            </div>
          </div>
        </lightning:card>
      </li>
      <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow"  class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
            Northern Trail Coalition
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
            <div class="slds-tile__detail slds-text-body--small">
              <dl class="slds-list--horizontal slds-wrap">
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                <dd class="slds-item--detail slds-truncate">(555) 456-7890</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Website:</dt>
                <dd class="slds-item--detail slds-truncate">trail@coalition.com</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Account Owner:</dt>
                <dd class="slds-item--detail slds-truncate">Hadi Samara</dd>
              </dl>
            </div>
          </div>
        </lightning:card>
      </li>
      <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
              Coffee Corp
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
            <div class="slds-tile__detail slds-text-body--small">
              <dl class="slds-list--horizontal slds-wrap">
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                <dd class="slds-item--detail slds-truncate">(123) 555-7890</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Website:</dt>
                <dd class="slds-item--detail slds-truncate">coffee@corp.com</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Account Owner:</dt>
                <dd class="slds-item--detail slds-truncate">Franz Jenkins</dd>
              </dl>
            </div>
          </div>
        </lightning:card>
      </li>
      <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
            Looper Coding Camp
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
            <div class="slds-tile__detail slds-text-body--small">
              <dl class="slds-list--horizontal slds-wrap">
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                <dd class="slds-item--detail slds-truncate">(123) 456-0000</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Website:</dt>
                <dd class="slds-item--detail slds-truncate">looper@codingcamp.com</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Account Owner:</dt>
                <dd class="slds-item--detail slds-truncate">Carmen Morales</dd>
              </dl>
            </div>
          </div>
        </lightning:card>
      </li>
    </ul>
  
        </div>
        <h2 class="slds-text-heading--medium slds-p-left_small slds-p-vertical--medium">
          Contacts
        </h2>
        <div class="slds-grid">
        <ul class="slds-col slds-size--1-of-1">
  <li class="slds-size--1-of-3 slds-show--inline-block">
      <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
              Isabel McCrory
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
              <div class="slds-tile__detail slds-text-body--small">
                  <dl class="slds-list--horizontal slds-wrap">
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Email Address:</dt>
                      <dd class="slds-item--detail slds-truncate">isabel@codingcamp.com</dd>
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Title:</dt>
                      <dd class="slds-item--detail slds-truncate">CEO</dd>
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Phone:</dt>
                      <dd class="slds-item--detail slds-truncate">(456) 123-7890 </dd>
                  </dl>
              </div>
          </div>
      </lightning:card></li>
  <li class="slds-size--1-of-3 slds-show--inline-block">
      <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
              Shanti Althaus
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
              <div class="slds-tile__detail slds-text-body--small">
                  <dl class="slds-list--horizontal slds-wrap">
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Email Address:</dt>
                      <dd class="slds-item--detail slds-truncate">shanti@compass.com</dd>
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Title:</dt>
                      <dd class="slds-item--detail slds-truncate">Senior Vice President, Tech</dd>
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Phone:</dt>
                      <dd class="slds-item--detail slds-truncate">(555) 432-8765</dd>
                  </dl>
              </div>
          </div>
      </lightning:card>
  </li>
</ul>
        </div>
        <h2 class="slds-text-heading--medium slds-p-left_small slds-p-vertical--medium">
          Leads
        </h2>
        <div class="slds-grid">
          <ul class="slds-col slds-size--1-of-1">
    <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
            <aura:set attribute="title">
                Jim Cooper
            </aura:set>
            <div class="slds-tile slds-p-horizontal--large">
                <div class="slds-tile__detail slds-text-body--small">
                    <dl class="slds-list--horizontal slds-wrap">
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Company:</dt>
                        <dd class="slds-item--detail slds-truncate">Einstein Accolades</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Email Address:</dt>
                        <dd class="slds-item--detail slds-truncate">jim@accolades.com</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Status:</dt>
                        <dd class="slds-item--detail slds-truncate">Qualified</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                        <dd class="slds-item--detail slds-truncate">(555) 123-4567</dd>
                    </dl>
                </div>
            </div>
        </lightning:card></li>
    <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
            <aura:set attribute="title">
                Collin Rhee
            </aura:set>
            <div class="slds-tile slds-p-horizontal--large">
                <div class="slds-tile__detail slds-text-body--small">
                    <dl class="slds-list--horizontal slds-wrap">
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Company:</dt>
                        <dd class="slds-item--detail slds-truncate">Badges &amp; Co.</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Email Address:</dt>
                        <dd class="slds-item--detail slds-truncate">colin@badges.com</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Status:</dt>
                        <dd class="slds-item--detail slds-truncate">Working - Contacted</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                        <dd class="slds-item--detail slds-truncate">(123) 456-7890</dd>
                    </dl>
                </div>
            </div>
        </lightning:card>
    </li>
    <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
            <aura:set attribute="title">
                Cora Sadik
            </aura:set>
            <div class="slds-tile slds-p-horizontal--large">
                <div class="slds-tile__detail slds-text-body--small">
                    <dl class="slds-list--horizontal slds-wrap">
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Company:</dt>
                        <dd class="slds-item--detail slds-truncate">Compass Construction Inc.</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Email Address:</dt>
                        <dd class="slds-item--detail slds-truncate">sadik@construction.com</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Status:</dt>
                        <dd class="slds-item--detail slds-truncate">Open - Not Contacted</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                        <dd class="slds-item--detail slds-truncate">(123) 456-7777</dd>
                    </dl>
                </div>
            </div>
        </lightning:card>
    </li>
</ul>
        </div>
      </div>
</aura:component>
  
 
Hi!

I'm trying to complete the challenge: Create a basic prototype of a Lightning app using Base Lightning Components and the Lightning Design System but keep getting this error: Challenge Not yet complete... here's what's wrong: Could not find a component named 'ResultsSection'.

screenshot of record page builder


This is the code I used:
    <aura:component implements="force:appHostable,
    flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,
    force:hasRecordId,forceCommunity:availableForAllPageTypes,
    force:lightningQuickAction" access="global" >
      <div class="slds-card">
        <h2 class="slds-text-heading--medium slds-p-left_small slds-p-vertical--medium">
          Accounts
        </h2>
        <div class="slds-grid">
           <ul class="slds-col slds-size--1-of-1">
      <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
            Compass Construction Inc.
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
            <div class="slds-tile__detail slds-text-body--small">
              <dl class="slds-list--horizontal slds-wrap">  <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                <dd class="slds-item--detail slds-truncate">(123) 456-7890</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Website:</dt>
                <dd class="slds-item--detail slds-truncate">compassinc@construction.com</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Account Owner:</dt>
                <dd class="slds-item--detail slds-truncate">Amelia Abbott</dd>
              </dl>
            </div>
          </div>
        </lightning:card>
      </li>
      <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow"  class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
            Northern Trail Coalition
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
            <div class="slds-tile__detail slds-text-body--small">
              <dl class="slds-list--horizontal slds-wrap">
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                <dd class="slds-item--detail slds-truncate">(555) 456-7890</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Website:</dt>
                <dd class="slds-item--detail slds-truncate">trail@coalition.com</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Account Owner:</dt>
                <dd class="slds-item--detail slds-truncate">Hadi Samara</dd>
              </dl>
            </div>
          </div>
        </lightning:card>
      </li>
      <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
              Coffee Corp
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
            <div class="slds-tile__detail slds-text-body--small">
              <dl class="slds-list--horizontal slds-wrap">
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                <dd class="slds-item--detail slds-truncate">(123) 555-7890</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Website:</dt>
                <dd class="slds-item--detail slds-truncate">coffee@corp.com</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Account Owner:</dt>
                <dd class="slds-item--detail slds-truncate">Franz Jenkins</dd>
              </dl>
            </div>
          </div>
        </lightning:card>
      </li>
      <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
            Looper Coding Camp
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
            <div class="slds-tile__detail slds-text-body--small">
              <dl class="slds-list--horizontal slds-wrap">
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                <dd class="slds-item--detail slds-truncate">(123) 456-0000</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Website:</dt>
                <dd class="slds-item--detail slds-truncate">looper@codingcamp.com</dd>
                <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Account Owner:</dt>
                <dd class="slds-item--detail slds-truncate">Carmen Morales</dd>
              </dl>
            </div>
          </div>
        </lightning:card>
      </li>
    </ul>
  
        </div>
        <h2 class="slds-text-heading--medium slds-p-left_small slds-p-vertical--medium">
          Contacts
        </h2>
        <div class="slds-grid">
        <ul class="slds-col slds-size--1-of-1">
  <li class="slds-size--1-of-3 slds-show--inline-block">
      <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
              Isabel McCrory
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
              <div class="slds-tile__detail slds-text-body--small">
                  <dl class="slds-list--horizontal slds-wrap">
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Email Address:</dt>
                      <dd class="slds-item--detail slds-truncate">isabel@codingcamp.com</dd>
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Title:</dt>
                      <dd class="slds-item--detail slds-truncate">CEO</dd>
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Phone:</dt>
                      <dd class="slds-item--detail slds-truncate">(456) 123-7890 </dd>
                  </dl>
              </div>
          </div>
      </lightning:card></li>
  <li class="slds-size--1-of-3 slds-show--inline-block">
      <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
          <aura:set attribute="title">
              Shanti Althaus
          </aura:set>
          <div class="slds-tile slds-p-horizontal--large">
              <div class="slds-tile__detail slds-text-body--small">
                  <dl class="slds-list--horizontal slds-wrap">
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Email Address:</dt>
                      <dd class="slds-item--detail slds-truncate">shanti@compass.com</dd>
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Title:</dt>
                      <dd class="slds-item--detail slds-truncate">Senior Vice President, Tech</dd>
                      <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Phone:</dt>
                      <dd class="slds-item--detail slds-truncate">(555) 432-8765</dd>
                  </dl>
              </div>
          </div>
      </lightning:card>
  </li>
</ul>
        </div>
        <h2 class="slds-text-heading--medium slds-p-left_small slds-p-vertical--medium">
          Leads
        </h2>
        <div class="slds-grid">
          <ul class="slds-col slds-size--1-of-1">
    <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
            <aura:set attribute="title">
                Jim Cooper
            </aura:set>
            <div class="slds-tile slds-p-horizontal--large">
                <div class="slds-tile__detail slds-text-body--small">
                    <dl class="slds-list--horizontal slds-wrap">
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Company:</dt>
                        <dd class="slds-item--detail slds-truncate">Einstein Accolades</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Email Address:</dt>
                        <dd class="slds-item--detail slds-truncate">jim@accolades.com</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Status:</dt>
                        <dd class="slds-item--detail slds-truncate">Qualified</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                        <dd class="slds-item--detail slds-truncate">(555) 123-4567</dd>
                    </dl>
                </div>
            </div>
        </lightning:card></li>
    <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
            <aura:set attribute="title">
                Collin Rhee
            </aura:set>
            <div class="slds-tile slds-p-horizontal--large">
                <div class="slds-tile__detail slds-text-body--small">
                    <dl class="slds-list--horizontal slds-wrap">
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Company:</dt>
                        <dd class="slds-item--detail slds-truncate">Badges &amp; Co.</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Email Address:</dt>
                        <dd class="slds-item--detail slds-truncate">colin@badges.com</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Status:</dt>
                        <dd class="slds-item--detail slds-truncate">Working - Contacted</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                        <dd class="slds-item--detail slds-truncate">(123) 456-7890</dd>
                    </dl>
                </div>
            </div>
        </lightning:card>
    </li>
    <li class="slds-size--1-of-3 slds-show--inline-block">
        <lightning:card variant="narrow" class="slds-m-around--small slds-card_boundary">
            <aura:set attribute="title">
                Cora Sadik
            </aura:set>
            <div class="slds-tile slds-p-horizontal--large">
                <div class="slds-tile__detail slds-text-body--small">
                    <dl class="slds-list--horizontal slds-wrap">
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Company:</dt>
                        <dd class="slds-item--detail slds-truncate">Compass Construction Inc.</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Second Label">Email Address:</dt>
                        <dd class="slds-item--detail slds-truncate">sadik@construction.com</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="Third Label">Status:</dt>
                        <dd class="slds-item--detail slds-truncate">Open - Not Contacted</dd>
                        <dt class="slds-item--label slds-text-color--weak slds-truncate" title="First Label">Phone:</dt>
                        <dd class="slds-item--detail slds-truncate">(123) 456-7777</dd>
                    </dl>
                </div>
            </div>
        </lightning:card>
    </li>
</ul>
        </div>
      </div>
</aura:component>
  
 
I have completed the Lightning Process builder step and i have verified that it is working correctly ( the battle Station record has been changed to complete and it has post a message to chatter, but when I click the Verify Step button I get this error message:

"Step Not yet complete... here's what's wrong:
An update to a Battle Station record with Weapon Status of 'Fully Operational' failed to post a Chatter message to the record. Make sure that the process is configured correctly and that it is activated.
Note: you may run into errors if you've skipped previous steps."