Add new Address field to views containing deprecated address (#6205)

as per title, following introduction of new Address field, we want to
display the new field next to the deprecated field, for users to notice
the new field.

<img width="983" alt="Capture d’écran 2024-07-10 à 17 44 25"
src="https://github.com/twentyhq/twenty/assets/51697796/7b5309b4-b22d-4f32-8054-68bc7b0f3bb3">
This commit is contained in:
Marie
2024-07-11 14:39:38 +02:00
committed by GitHub
parent 70f46242b4
commit 8e25a107fd
4 changed files with 249 additions and 12 deletions

View File

@ -41,7 +41,7 @@ export class EntityEventsToDbListener {
// ....
private async handle(payload: ObjectRecordBaseEvent) {
if (!payload.objectMetadata.isAuditLogged) {
if (!payload.objectMetadata?.isAuditLogged) {
return;
}