Guest User

Untitled

a guest
Feb 17th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <template>
  2. <lightning-card title="RelationshipOwner" icon-name="standard:partners">
  3. <lightning-button
  4. label="Go to Relationship Owner Record"
  5. onclick={navigateToOwner}
  6. class="slds-m-right_x-small"
  7. ></lightning-button>
  8. <div class="slds-m-around--medium">
  9. <!--show relationship owner when influencer is loaded-->
  10. <template if:true={contact.data}>
  11. <lightning-record-form object-api-name="relationship_owner__c"
  12. record-id={ownerId}
  13. layout-type="Compact"
  14. columns=2>
  15. </lightning-record-form>
  16. </template>
  17. <!--Data fails to load-->
  18. <template if:true={contact.error}>
  19. <div class="slds-text-color--error">
  20. An error occured while loading influencer data.
  21. </div>
  22. </template>
  23.  
  24. </div>
  25. </lightning-card>
Add Comment
Please, Sign In to add comment