Commit 589b7385 authored by Dietmar Maurer's avatar Dietmar Maurer

simplify GUI

And display the task log by default (instead of cluster log)
parent d4512c76
...@@ -37,7 +37,7 @@ Ext.define('PVE.StateProvider', { ...@@ -37,7 +37,7 @@ Ext.define('PVE.StateProvider', {
// [ name, default ] // [ name, default ]
['view', 'server'], ['view', 'server'],
['rid', 'root'], ['rid', 'root'],
['ltab', 'clog'], ['ltab', 'tasks'],
['nodetab', ''], ['nodetab', ''],
['storagetab', ''], ['storagetab', ''],
['kvmtab', ''], ['kvmtab', ''],
......
...@@ -362,7 +362,6 @@ Ext.define('PVE.StdWorkspace', { ...@@ -362,7 +362,6 @@ Ext.define('PVE.StdWorkspace', {
region: 'south', region: 'south',
margins:'0 5 5 5', margins:'0 5 5 5',
height: 200, height: 200,
collapsible: true,
split:true split:true
} }
] ]
......
...@@ -7,8 +7,9 @@ Ext.define('PVE.panel.StatusPanel', { ...@@ -7,8 +7,9 @@ Ext.define('PVE.panel.StatusPanel', {
], ],
alias: 'widget.pveStatusPanel', alias: 'widget.pveStatusPanel',
title: "Realtime logfile viewer",
tabPosition: 'bottom', //title: "Logs",
//tabPosition: 'bottom',
initComponent: function() { initComponent: function() {
var me = this; var me = this;
...@@ -30,15 +31,15 @@ Ext.define('PVE.panel.StatusPanel', { ...@@ -30,15 +31,15 @@ Ext.define('PVE.panel.StatusPanel', {
} }
}, },
items: [ items: [
{
itemId: 'clog',
title: 'Cluster log',
xtype: 'pveClusterLog'
},
{ {
itemId: 'tasks', itemId: 'tasks',
title: 'Recent tasks', title: 'Recent tasks',
xtype: 'pveClusterTasks' xtype: 'pveClusterTasks'
},
{
itemId: 'clog',
title: 'Cluster log',
xtype: 'pveClusterLog'
} }
] ]
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment