tfwright / live_admin

Low-config admin UI for Phoenix apps, built on LiveView
MIT License
251 stars 22 forks source link

Fix belongs_to n+1 #26

Closed tfwright closed 1 year ago

tfwright commented 1 year ago

Currently belongs_to assocs are preloaded at render in the list table, potentially generating a ton of extra queries. It would be better to preload everything with the initial query.

tfwright commented 1 year ago

These were actually already being preloaded in advance, but 08c03ac removes the fallback.