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
Mark MedlinMark Medlin 

Cannot read property get of undefined - aura_prod.js

I am trying to spin up a community in my scratch organization using the sfdx force:source:push command.  All objects and code were pulled from my production community.

Using the push, I am able to create the community.  However, I get the "Cannot read property 'get' of undefined" error message in my Workspace Builder window.  I can navigate to other areas of the community, but cannot navigate to the Builder.

Here is a the error in the browser debug window:

Error message from debug window

 

Srikanth TSrikanth T
I have mentioned everything correct, but still i am facing the issue, may i know if there are any trouble shooting points.

Code:

Component:

<lightning:combobox name="Select Instance:" aura:id="selctOrg" placeholder="Select an Option" options="{! v.orgList }" value="{!v.selectedOrg }" onchange="{! c.handleChange }"/> 

js controller: var selectedSOrg = component.find("selctOrg").get("v.value");

Error is: [Cannot read property 'get' of undefined]