grid: fixed grid width issues

This commit is contained in:
Torkel Ödegaard 2017-10-13 15:11:05 +02:00
parent 70005d3e37
commit 0c31d23086
2 changed files with 4 additions and 4 deletions

View File

@ -256,7 +256,7 @@ export class BackendSrv {
gridPos: {
x: 0,
y: 0,
w: 4,
w: 8,
h: 10
}
},
@ -268,7 +268,7 @@ export class BackendSrv {
gridPos: {
x: 4,
y: 0,
w: 4,
w: 8,
h: 10
}
},
@ -280,7 +280,7 @@ export class BackendSrv {
gridPos: {
x: 8,
y: 0,
w: 4,
w: 8,
h: 10
}
}

View File

@ -148,7 +148,7 @@ export class DashNavCtrl {
addPanel() {
this.dashboard.addPanel({
type: 'graph',
gridPos: {x: 0, y: 0, w: 6, h: 5},
gridPos: {x: 0, y: 0, w: 12, h: 7},
title: 'New Graph',
});
}