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', {
// [ name, default ]
['view', 'server'],
['rid', 'root'],
['ltab', 'clog'],
['ltab', 'tasks'],
['nodetab', ''],
['storagetab', ''],
['kvmtab', ''],
......
......@@ -362,7 +362,6 @@ Ext.define('PVE.StdWorkspace', {
region: 'south',
margins:'0 5 5 5',
height: 200,
collapsible: true,
split:true
}
]
......
......@@ -7,8 +7,9 @@ Ext.define('PVE.panel.StatusPanel', {
],
alias: 'widget.pveStatusPanel',
title: "Realtime logfile viewer",
tabPosition: 'bottom',
//title: "Logs",
//tabPosition: 'bottom',
initComponent: function() {
var me = this;
......@@ -30,15 +31,15 @@ Ext.define('PVE.panel.StatusPanel', {
}
},
items: [
{
itemId: 'clog',
title: 'Cluster log',
xtype: 'pveClusterLog'
},
{
itemId: 'tasks',
title: 'Recent tasks',
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