diff --git a/src/app/core/services/custom-fields.service.ts b/src/app/core/services/custom-fields.service.ts index f63c032d52..5513a65f3f 100644 --- a/src/app/core/services/custom-fields.service.ts +++ b/src/app/core/services/custom-fields.service.ts @@ -23,9 +23,7 @@ export class CustomFieldsService { setDefaultValue(property: TxnCustomProperties, inputValue: string): TxnCustomProperties { if (inputValue === 'BOOLEAN') { property.value = false; - } else if (inputValue === 'SELECT' || inputValue === 'MULTI_SELECT') { - property.value = ''; - } else if (inputValue === 'USER_LIST') { + } else if (inputValue === 'USER_LIST' || inputValue === 'MULTI_SELECT') { property.value = []; }