SysOps: deploy-all — 2026-06-09 10:41 UTC

This commit is contained in:
sysops
2026-06-09 10:41:13 +00:00
parent 69fe67cc0e
commit 21ea3a2c81
82 changed files with 8906 additions and 981 deletions
+3 -1
View File
@@ -40,7 +40,9 @@ window.Cockpit = (function () {
}
function confirmDelete(message) {
return window.confirm(message || 'Delete this item?');
var msg = message;
if (!msg && window.I18n) msg = window.I18n.t('common.confirm_delete');
return window.confirm(msg || 'Delete this item?');
}
function openDrawer(id) {