mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-14 15:58:20 +00:00
ui: node/zfs: fix stretch and scroll in details window
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
8cfe208868
commit
50d5490f3a
@ -1,3 +1,4 @@
|
||||
/*jslint confusion: true*/
|
||||
Ext.define('PVE.node.CreateZFS', {
|
||||
extend: 'Proxmox.window.Edit',
|
||||
xtype: 'pveCreateZFS',
|
||||
@ -387,12 +388,15 @@ Ext.define('PVE.node.ZFSList', {
|
||||
var devicetree = Ext.create('PVE.node.ZFSDevices', {
|
||||
title: gettext('Devices'),
|
||||
nodename: me.nodename,
|
||||
flex: 1,
|
||||
zpool: zpool
|
||||
});
|
||||
|
||||
var detailsgrid = Ext.create('PVE.node.ZFSStatus', {
|
||||
layout: 'fit',
|
||||
nodename: me.nodename,
|
||||
autoScroll: true,
|
||||
flex: 0,
|
||||
zpool: zpool
|
||||
});
|
||||
|
||||
@ -406,6 +410,10 @@ Ext.define('PVE.node.ZFSList', {
|
||||
items:[{
|
||||
xtype: 'panel',
|
||||
region: 'center',
|
||||
layout: {
|
||||
type: 'vbox',
|
||||
align: 'stretch'
|
||||
},
|
||||
items: [detailsgrid, devicetree],
|
||||
tbar: [{
|
||||
text: gettext('Reload'),
|
||||
|
Loading…
Reference in New Issue
Block a user