function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SimmoSimmo 

Summer 19 release causing issue with Lightning Event parameters?

I'm aware that the Summer 19 release has caused an issue with parameters in URL's so they need to be prefixed with the default c__ name space.
Is this issue also effecting lightning events? As the event below has stopped working due to the contractId parameter being undefined?
I have tried prefxing the parameter name with c__ but that hasn't worked.
 
navigateToPlan : function(component, event) {

        var contractId = event.target.attributes.getNamedItem("data-contractid").value;

        var navigateEvent = $A.get("e.force:navigateToComponent");
        navigateEvent.setParams({
            componentDef : 'c:ContractPage',
            componentAttributes: { contractId : contractId }
        });

        navigateEvent.fire();
    }