Timeline: split "periodic" mode into its own panel (#34171)

This commit is contained in:
Ryan McKinley
2021-05-17 13:00:04 -07:00
committed by GitHub
parent c630393cf4
commit de5cd4a7d3
20 changed files with 434 additions and 56 deletions
+8 -6
View File
@@ -274,20 +274,22 @@ func getPanelSort(id string) int {
sort = 7
case "piechart":
sort = 8
case "timeline":
case "state-timeline":
sort = 9
case "heatmap":
sort = 10
case "graph":
case "status-grid":
sort = 11
case "text":
case "graph":
sort = 12
case "alertlist":
case "text":
sort = 13
case "dashlist":
case "alertlist":
sort = 14
case "news":
case "dashlist":
sort = 15
case "news":
sort = 16
}
return sort
}