How to structure a "recent comments" view

Sounds like you’re using a singular comments table for all comments across the entire app?

Ya…in that case it’ll be a bit less dynamic. You’ll need to create multiple relation columns to the respective tables and then create an action with conditional branches that check against each relation to see if it’s “not empty” and if so, view details for that relation.

A more dynamic approach (but slightly poorer UX) would be to write the deeplink for each Page when a new comment is created and then when a manager clicks the action button, perform an open link action to that deeplink. The only caveat is that it will open that page in a new tab :confused: