You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To resolve the 'Cannot compute column name for composite field metadata type' error, update the computeColumnName function in compute-column-name.util.ts to correctly handle composite field metadata types. Ensure that the function includes logic to process these types appropriately. Example:
functioncomputeColumnName(fieldMetadata: FieldMetadata): string{if(fieldMetadata.type==='composite'){// Add logic to handle composite field metadata typesreturn`${fieldMetadata.parent}.${fieldMetadata.name}`;}// Existing logic for other types}
https://twenty-v7.sentry.io/issues/5294015563/events/d839ba343b2e4cd1bf33a4e28b90153d/?environment=prod&project=4507072499810304&query=is%3Aunresolved+issue.priority%3A%5Bhigh%2C+medium%5D&referrer=next-event&statsPeriod=7d&stream_index=3
The text was updated successfully, but these errors were encountered: