diff --git a/src/node/Tasks.js b/src/node/Tasks.js index 62c9c18..5e46b3d 100644 --- a/src/node/Tasks.js +++ b/src/node/Tasks.js @@ -441,6 +441,23 @@ Ext.define('Proxmox.node.Tasks', { return Proxmox.Utils.format_task_status(value); }, }, + { + xtype: 'actioncolumn', + width: 30, + align: 'center', + tooltip: gettext('Actions'), + items: [{ + iconCls: 'fa fa-chevron-right', + tooltip: gettext('View Task'), + handler: function(_grid, _rowIndex, _colIndex, _item, _e, rec) { + Ext.create('Proxmox.window.TaskViewer', { + autoShow: true, + upid: rec.data.upid, + endtime: rec.data.endtime, + }); + }, + }], + }, ], initComponent: function() {