Files
twenty/packages/twenty-front
Guillim 7e1c046e58 morph bug fix (#15370)
Two bug fixes here: 

# MorphRelationOneToManyFieldDisplay
we expect an empty array, not undefined (run time error otherwise)


Fixes `Cannot read properties of undefined (reading 'length'): Cannot
read properties of undefined (reading 'length')` in
**MorphRelationOneToManyFieldDisplay**

```js
morphValuesWithObjectNameSingular.every(
      (morphValueWithObjectNameSingular) =>
        morphValueWithObjectNameSingular.value.length === 0,
    );
```

# create record in table mode
if the record has a relation there is currenlty a bug in production when
it is created. A cache issue.

`Missing field 'companyFoundedId' while writing result `
2025-10-27 17:34:59 +01:00
..
2025-10-27 17:34:59 +01:00
2025-10-11 12:08:10 +02:00
2025-04-17 16:03:51 +02:00
2025-08-11 14:10:04 +02:00
2025-10-11 12:08:10 +02:00

Run yarn dev while server running on port 3000