Skip to main content
โ† Back to all release notes
June 11, 2026

โšก Auto-run on changes for embedded dashboards

new feature

Embedded dashboards can now re-run automatically whenever filters or controls change, without clicking the Apply button. Use the new dashboard_autorun_on_changes setting in your JWT payload to enable this behavior across all dashboards in your embed portal.

How to enableโ€‹

Add dashboard_autorun_on_changes: true to the settings object in your JWT payload:

const payload = {
object_name: 'your_portal',
object_type: 'EmbedPortal',
settings: {
dashboard_autorun_on_changes: true,
},
exp: Math.floor(Date.now() / 1000) + 3600,
};

This overrides the dashboard's internal auto-run on changes setting. The default is false โ€” dashboards continue to require clicking Apply unless you opt in.

Note: Auto-run fires a query on every filter change. For dashboards with many charts or heavy queries, leaving this off avoids unexpected query costs.

Learn more: Embed Portal Parameters Reference