mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-04-28 18:50:04 +00:00
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:
parent
f117dabcf0
commit
e98e962904
@ -100,7 +100,7 @@ Ext.define('PBS.LongestTasks', {
|
||||
items: [
|
||||
{
|
||||
iconCls: 'fa fa-chevron-right',
|
||||
tooltip: gettext('Open Task'),
|
||||
tooltip: gettext('View Task'),
|
||||
handler: 'openTaskActionColumn',
|
||||
},
|
||||
],
|
||||
|
@ -95,7 +95,7 @@ Ext.define('PBS.RunningTasks', {
|
||||
items: [
|
||||
{
|
||||
iconCls: 'fa fa-chevron-right',
|
||||
tooltip: gettext('Open Task'),
|
||||
tooltip: gettext('View Task'),
|
||||
handler: 'openTaskActionColumn',
|
||||
},
|
||||
],
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user