Update relation cascade on standard objects favorite, attachment, activityTargets (#4227)

This commit is contained in:
Charles Bochet
2024-02-28 17:49:45 +01:00
committed by GitHub
parent fcfc6796f7
commit e0bf8e43d1
7 changed files with 33 additions and 5 deletions

View File

@ -22,6 +22,11 @@ export function generateDefaultValue(
url: '',
label: '',
};
case FieldMetadataType.CURRENCY:
return {
amountMicros: null,
currencyCode: '',
};
default:
return null;
}