[pbs-devel] [PATCH proxmox-backup] ui: fix remove vanished tooltip to be valid for both sync directions
Christian Ebner
c.ebner at proxmox.com
Thu Nov 28 11:01:10 CET 2024
The tooltip text shown for the remove vanished flag when hovering
is incorrect for push direction. By using `sync target` over `local`,
make the text agnostic to the actual sync direction.
Signed-off-by: Christian Ebner <c.ebner at proxmox.com>
---
www/window/SyncJobEdit.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www/window/SyncJobEdit.js b/www/window/SyncJobEdit.js
index 1f47e016e..bcd2f2fb2 100644
--- a/www/window/SyncJobEdit.js
+++ b/www/window/SyncJobEdit.js
@@ -343,7 +343,7 @@ Ext.define('PBS.window.SyncJobEdit', {
name: 'remove-vanished',
autoEl: {
tag: 'div',
- 'data-qtip': gettext('Remove snapshots from local datastore if they vanished from source datastore?'),
+ 'data-qtip': gettext('Remove snapshots from sync target datastore if they vanished from source datastore?'),
},
uncheckedValue: false,
value: false,
--
2.39.5
More information about the pbs-devel
mailing list