• Alen hilston
  • NEWBIE
  • 10 Points
  • Member since 2021

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

Hi,

Please help. I am trying to add some conditional statement like in vfpage on my aura component but I am not able to do it. It keeps showing me the same error. 
User-added image

<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global" >
    
    <aura:attribute type="Integer" name="score"/>
    
    <aura:if isTrue="{!v.score > 0 && v.score < 10}">
    <b>You are not eligible</b>
    </aura:if>
    
</aura:component>
 

Please let me know if I am doing something wrong!

Hi,

Please help. I am trying to add some conditional statement like in vfpage on my aura component but I am not able to do it. It keeps showing me the same error. 
User-added image

<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global" >
    
    <aura:attribute type="Integer" name="score"/>
    
    <aura:if isTrue="{!v.score > 0 && v.score < 10}">
    <b>You are not eligible</b>
    </aura:if>
    
</aura:component>
 

Please let me know if I am doing something wrong!