diff options
Diffstat (limited to 'web/MainView.js')
-rw-r--r-- | web/MainView.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/web/MainView.js b/web/MainView.js index e736b82b8..f6c9a5842 100644 --- a/web/MainView.js +++ b/web/MainView.js @@ -19,7 +19,8 @@ Ext.define('MainView', { requires: [ 'DeviceView', - 'MapView' + 'MapView', + 'ReportView' ], layout: 'border', @@ -34,6 +35,11 @@ Ext.define('MainView', { xtype: 'device-view', width: Styles.device_width }, { + region: 'south', + xtype: 'report-view', + header: false, + height: Styles.report_height + }, { region: 'center', xtype: 'map-view', collapsible: false |