ui tasks: use view task instead of open task

This aligns the tooltips to how we have in in Proxmox VE. Using "view"
instead of "open" should make it clear, that this is a safe read-only
action.

Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com>
Link: https://lore.proxmox.com/20241118104959.95159-1-a.lauterer@proxmox.com
This commit is contained in:
Aaron Lauterer 2024-11-18 11:49:59 +01:00 committed by Thomas Lamprecht
parent f117dabcf0
commit e98e962904
3 changed files with 3 additions and 3 deletions

View File

@ -100,7 +100,7 @@ Ext.define('PBS.LongestTasks', {
items: [
{
iconCls: 'fa fa-chevron-right',
tooltip: gettext('Open Task'),
tooltip: gettext('View Task'),
handler: 'openTaskActionColumn',
},
],

View File

@ -95,7 +95,7 @@ Ext.define('PBS.RunningTasks', {
items: [
{
iconCls: 'fa fa-chevron-right',
tooltip: gettext('Open Task'),
tooltip: gettext('View Task'),
handler: 'openTaskActionColumn',
},
],

View File

@ -109,7 +109,7 @@ Ext.define('PBS.TaskSummary', {
items: [
{
iconCls: 'fa fa-chevron-right',
tooltip: gettext('Open Task'),
tooltip: gettext('View Task'),
handler: function(g, rowIndex) {
let rec = tasklist.getStore().getAt(rowIndex);
tasklist.setVisible(false);