0

enter image description here

code to get pagereference from parent component:

var pageReference = component.get("v.pageReference");
        console.log('getpropertyDetails pageReference'+JSON.stringify(pageReference));

1 Answers1

0

This is probably because you are trying to access an attribute from an object which is null.

In the getSelectedProperty method object associated with the state attribute is null.

Tyler2P
  • 2,324
  • 26
  • 22
  • 31