Commit df615580 by Torkel Ödegaard

grid: fixed geting started panel pos

parent 2e77bd0c
...@@ -280,10 +280,12 @@ func addGettingStartedPanelToHomeDashboard(dash *simplejson.Json) { ...@@ -280,10 +280,12 @@ func addGettingStartedPanelToHomeDashboard(dash *simplejson.Json) {
newpanel := simplejson.NewFromAny(map[string]interface{}{ newpanel := simplejson.NewFromAny(map[string]interface{}{
"type": "gettingstarted", "type": "gettingstarted",
"id": 123123, "id": 123123,
"gridPos": map[string]interface{}{
"x": 0, "x": 0,
"y": 3, "y": 3,
"width": 12, "w": 12,
"height": 4, "h": 4,
},
}) })
panels = append(panels, newpanel) panels = append(panels, newpanel)
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
} }
], ],
"rows": [], "rows": [],
"schemaVersion": 15, "schemaVersion": 16,
"style": "dark", "style": "dark",
"tags": [], "tags": [],
"templating": { "templating": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment