force-app/main/default/lwc/customUnitComp/customUnitComp.js
@@ -6,14 +6,11 @@ @api recordId; connectedCallback(){ console.log('unitValue = ' + this.unitValue); console.log('unitOptions = ' + JSON.stringify(this.unitOptions)); console.log('recordId = ' + this.recordId); } handleDataChange(event){ console.log('dataChange' + event.target.value); console.log('unitValue = ' + event.target.value); this.unitValue = event.target.value; this.dispatchEvent(new CustomEvent('unitchange', { composed: true, bubbles: true,