diff options
Diffstat (limited to 'web/app/view/BaseDialog.js')
-rw-r--r-- | web/app/view/BaseDialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/view/BaseDialog.js b/web/app/view/BaseDialog.js index 8d832245..273b620d 100644 --- a/web/app/view/BaseDialog.js +++ b/web/app/view/BaseDialog.js @@ -21,6 +21,6 @@ Ext.define('Traccar.view.BaseDialog', { bodyPadding: Traccar.Style.normalPadding, resizable: false, modal: true, - maxHeight: screen.height ? screen.height - Traccar.Style.normalPadding * 2 : null, + maxHeight: window.innerHeight ? window.innerHeight - Traccar.Style.normalPadding * 2 : null, autoScroll: true }); |