diff --git a/force-app/main/default/lwc/geBatchWizard/geBatchWizard.js b/force-app/main/default/lwc/geBatchWizard/geBatchWizard.js index 11b75a22b89..3c31935f607 100755 --- a/force-app/main/default/lwc/geBatchWizard/geBatchWizard.js +++ b/force-app/main/default/lwc/geBatchWizard/geBatchWizard.js @@ -462,7 +462,7 @@ export default class geBatchWizard extends NavigationMixin(LightningElement) { batchDefaults[formElement.label] = { objectApiName: formElement.objectApiName, fieldApiName: formElement.fieldApiName, - value: formElement.value + value: isNotEmpty(formElement.value) ? formElement.value : undefined }; } }