mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fixed image rendering issue for dashboards with auto refresh, casued by missing reloadOnSearch flag on route, fixes #15631
This commit is contained in:
parent
72d5215c65
commit
70f1abbe37
@ -81,6 +81,7 @@ export function setupAngularRoutes($routeProvider, $locationProvider) {
|
|||||||
template: '<react-container />',
|
template: '<react-container />',
|
||||||
pageClass: 'dashboard-solo',
|
pageClass: 'dashboard-solo',
|
||||||
routeInfo: DashboardRouteInfo.Normal,
|
routeInfo: DashboardRouteInfo.Normal,
|
||||||
|
reloadOnSearch: false,
|
||||||
resolve: {
|
resolve: {
|
||||||
component: () => SoloPanelPage,
|
component: () => SoloPanelPage,
|
||||||
},
|
},
|
||||||
@ -89,6 +90,7 @@ export function setupAngularRoutes($routeProvider, $locationProvider) {
|
|||||||
template: '<react-container />',
|
template: '<react-container />',
|
||||||
pageClass: 'dashboard-solo',
|
pageClass: 'dashboard-solo',
|
||||||
routeInfo: DashboardRouteInfo.Normal,
|
routeInfo: DashboardRouteInfo.Normal,
|
||||||
|
reloadOnSearch: false,
|
||||||
resolve: {
|
resolve: {
|
||||||
component: () => SoloPanelPage,
|
component: () => SoloPanelPage,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user