Pagination doesn't appear when detailed is turned on

Expected behavior

pagination should work regardless of detail setting on/off

Actual behavior

the table is showing 1 of 0 when detail view is turned off, which by default is off whenever you launch or update an instance, or when you add a new table.

Context

we are using Postgres, the table with or without association behaves the same way

  • Package Version: 1.0
  • Express Version: 4.x.x
  • Sequelize Version: 6.x.x
  • Database Dialect: Sequelize
  • Database Version: Postgres 12.x
  • Project Name: Lighthouse

Error Reproduced: Loom | Free Screen & Video Recording Software

also another issue as. you can see on video, the brush/customize/setting tool doesn’t work until reload.

Hey @Talha_Habib and welcome in our community,

It’s a known issue that happens sometimes. It’s due to a conflict between the route /forest/your-collection-name/count and /forest/your-collection-name/:recordId. To avoid this issue you can replace all

router.get('/your-collection-name/:recordId', ...);

by

router.get('/your-collection-name/:recordId(?!count)', ...);