task history: better default column width

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-05-25 18:56:56 +02:00
parent 122a207938
commit 7e0a80cd16

View File

@ -124,7 +124,7 @@ Ext.define('Proxmox.node.Tasks', {
{ {
header: gettext("Start Time"), header: gettext("Start Time"),
dataIndex: 'starttime', dataIndex: 'starttime',
width: 100, width: 130,
renderer: function(value) { renderer: function(value) {
return Ext.Date.format(value, "M d H:i:s"); return Ext.Date.format(value, "M d H:i:s");
}, },
@ -132,7 +132,7 @@ Ext.define('Proxmox.node.Tasks', {
{ {
header: gettext("End Time"), header: gettext("End Time"),
dataIndex: 'endtime', dataIndex: 'endtime',
width: 100, width: 130,
renderer: function(value, metaData, record) { renderer: function(value, metaData, record) {
if (!value) { if (!value) {
metaData.tdCls = "x-grid-row-loading"; metaData.tdCls = "x-grid-row-loading";
@ -144,7 +144,7 @@ Ext.define('Proxmox.node.Tasks', {
{ {
header: gettext("Node"), header: gettext("Node"),
dataIndex: 'node', dataIndex: 'node',
width: 100, width: 120,
}, },
{ {
header: gettext("User name"), header: gettext("User name"),