nazirov91/ra-strapi-rest

ReferenceField not displaying data in List view

Closed this issue · 1 comments

Hello, I have a model with Accounts and Projects. The relation is one account can have many projects and one project is related to one account.

This is working fine in creation, updating and showing views but not in List view. The code is the same for Show and List:

          <ReferenceField source="account" reference="accounts" label="Account">
            <TextField source="name" />
          </ReferenceField>

Also, I have a filter by Account in the List view and it's properly working.

Any idea why the reference field is not showing data in the list view?

Okay, fixed with

<ReferenceField source="account.id" reference="accounts" label="Account">
            <TextField source="name" />
          </ReferenceField>