Condense view horizontally and fix settings item spacings

This commit is contained in:
Johannes Zellner
2025-09-19 18:43:41 +02:00
parent 9bdbd49de0
commit 1d49af144c
20 changed files with 60 additions and 36 deletions

View File

@@ -253,7 +253,7 @@ function eventlogDetails(eventLog, app = null, appIdContext = '') {
case ACTION_APP_BACKUP_FINISH:
if (!data.app) return '';
if (data.errorMessage) return 'Backup ' + appName('of', data.app) + ' failed: ' + data.errorMessage;
else return 'Backup ' + appName('of', data.app) + ' succeeded with backup id ' + data.backupId + ' at ' + data.remotePath;
else return 'Backup ' + appName('of', data.app) + ' succeeded';
case ACTION_APP_CLONE:
if (appIdContext === data.oldAppId) return 'App was cloned to ' + data.newApp.fqdn + ' using backup at ' + data.remotePath;