diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue
index db2f20382b17412673f9588d76932850e66fb941..33f820ecd7a2ecca0c1889587b0afa3736ee1f5a 100644
--- a/apps/dashboard/src/App.vue
+++ b/apps/dashboard/src/App.vue
@@ -222,7 +222,9 @@ export default {
 					continue
 				}
 				if (element) {
-					this.callbacks[app](element[0])
+					this.callbacks[app](element[0], {
+						widget: this.panels[app],
+					})
 					Vue.set(this.panels[app], 'mounted', true)
 				} else {
 					console.error('Failed to register panel in the frontend as no backend data was provided for ' + app)