Dynamic Dashboards: Instantiate `DashboardLayoutOrchestrator` even without ff (#103957)

pull/103979/head
Bogdan Matei 2 months ago committed by GitHub
parent d2b8994d80
commit 4434b40ca4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      public/app/features/dashboard-scene/scene/DashboardScene.tsx

@ -200,7 +200,7 @@ export class DashboardScene extends SceneObjectBase<DashboardSceneState> impleme
...state,
editPane: new DashboardEditPane(),
scopesBridge: config.featureToggles.scopeFilters ? new SceneScopesBridge({}) : undefined,
layoutOrchestrator: config.featureToggles.dashboardNewLayouts ? new DashboardLayoutOrchestrator() : undefined,
layoutOrchestrator: new DashboardLayoutOrchestrator(),
});
this.serializer =

Loading…
Cancel
Save