mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-26 05:56:30 +00:00
ui: backup info: make initial height dependent of body view-height
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
64f3f34623
commit
a4240b80e8
@ -548,7 +548,7 @@ Ext.define('PVE.dc.BackupView', {
|
|||||||
Ext.create('Ext.window.Window', {
|
Ext.create('Ext.window.Window', {
|
||||||
modal: true,
|
modal: true,
|
||||||
width: 800,
|
width: 800,
|
||||||
height: 600,
|
height: Ext.getBody().getViewSize().height > 1000 ? 800 : 600, // factor out as common infra?
|
||||||
resizable: true,
|
resizable: true,
|
||||||
layout: 'fit',
|
layout: 'fit',
|
||||||
title: gettext('Backup Details'),
|
title: gettext('Backup Details'),
|
||||||
|
Loading…
Reference in New Issue
Block a user