buli
2023-04-26 d6a096fadfe9c8f261f56a827cfceed663c36b8b
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,