You need to sign in to do that
Don't have an account?

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:
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]