Commit 4ecaceab authored by Emmanuel Kasper's avatar Emmanuel Kasper Committed by Dietmar Maurer

ext5migrate: bump date-time fields to 150px width

ExtJS5 Neptune default theme use 13px font instead of 12px in
ExtJS4 so we need to make room for it.
parent b7b168b7
......@@ -45,7 +45,7 @@ Ext.define('PVE.dc.Log', {
{
header: gettext("Time"),
dataIndex: 'time',
width: 100,
width: 150,
renderer: function(value) {
return Ext.Date.format(value, "M d H:i:s");
}
......@@ -53,7 +53,7 @@ Ext.define('PVE.dc.Log', {
{
header: gettext("Node"),
dataIndex: 'node',
width: 100
width: 150
},
{
header: gettext("Service"),
......
......@@ -70,7 +70,7 @@ Ext.define('PVE.dc.Tasks', {
{
header: gettext("Start Time"),
dataIndex: 'starttime',
width: 100,
width: 150,
renderer: function(value) {
return Ext.Date.format(value, "M d H:i:s");
}
......@@ -78,7 +78,7 @@ Ext.define('PVE.dc.Tasks', {
{
header: gettext("End Time"),
dataIndex: 'endtime',
width: 100,
width: 150,
renderer: function(value, metaData, record) {
if (record.data.pid) {
if (record.data.type == "vncproxy" ||
......
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