Move pressure trend into current display

This commit is contained in:
2019-10-08 19:15:20 -04:00
parent 166576ab4d
commit c989a20f22
10 changed files with 81 additions and 146 deletions

View File

@@ -31,16 +31,6 @@
</div>
</gridster-item>
<gridster-item [item]="dashboardLayout.layout[2]">
<div class="dashboard-item">
<div class="dashboard-item-header">
Pressure Trend
</div>
<div class="dashboard-item-content">
<app-pressure-trend></app-pressure-trend>
</div>
</div>
</gridster-item>
<gridster-item [item]="dashboardLayout.layout[3]">
<div class="dashboard-item">
<div class="dashboard-item-header">
Almanac

View File

@@ -13,12 +13,11 @@ export class DashboardComponent implements OnInit {
public locked = true;
private defaultLayout: DashboardLayout = {
version: 2,
version: 3,
layout: [
{ cols: 3, rows: 2, y: 0, x: 0 },
{ cols: 2, rows: 2, y: 0, x: 3 },
{ cols: 2, rows: 2, y: 0, x: 5 },
{ cols: 3, rows: 2, y: 0, x: 7 }
{ cols: 3, rows: 2, y: 0, x: 5 }
]
};