diff --git a/webadmin/src/js/index.js b/webadmin/src/js/index.js index c34068d0e..4b3c14fb8 100644 --- a/webadmin/src/js/index.js +++ b/webadmin/src/js/index.js @@ -342,24 +342,24 @@ app.filter('eventLogAction', function() { var errorMessage = data.errorMessage; switch (eventLog.action) { - case ACTION_ACTIVATE: return 'Cloudron activated'; - case ACTION_APP_CONFIGURE: return 'App configured'; - case ACTION_APP_INSTALL: return 'App installed'; - case ACTION_APP_RESTORE: return 'App restored'; - case ACTION_APP_UNINSTALL: return 'App uninstalled'; - case ACTION_APP_UPDATE: return 'App updated'; - case ACTION_APP_LOGIN: return 'App logged in'; - case ACTION_BACKUP_START: return 'Backup started'; - case ACTION_BACKUP_FINISH: return 'Backup finished'; - case ACTION_BACKUP_CLEANUP: return 'Backup removed'; - case ACTION_CERTIFICATE_RENEWAL: return 'Certificate renewal'; - case ACTION_START: return 'Cloudron startup'; - case ACTION_UPDATE: return 'Platform update'; - case ACTION_USER_ADD: return 'User added'; - case ACTION_USER_LOGIN: return 'User logged in'; - case ACTION_USER_REMOVE: return 'User removed'; - case ACTION_USER_UPDATE: return 'User updated'; - default: return eventLog.action; + case ACTION_ACTIVATE: return 'Cloudron activated'; + case ACTION_APP_CONFIGURE: return 'App configured'; + case ACTION_APP_INSTALL: return 'App installed'; + case ACTION_APP_RESTORE: return 'App restored'; + case ACTION_APP_UNINSTALL: return 'App uninstalled'; + case ACTION_APP_UPDATE: return 'App updated'; + case ACTION_APP_LOGIN: return 'App logged in'; + case ACTION_BACKUP_START: return 'Backup started'; + case ACTION_BACKUP_FINISH: return 'Backup finished'; + case ACTION_BACKUP_CLEANUP: return 'Backup removed'; + case ACTION_CERTIFICATE_RENEWAL: return 'Certificate renewal'; + case ACTION_START: return 'Cloudron startup'; + case ACTION_UPDATE: return 'Platform update'; + case ACTION_USER_ADD: return 'User added'; + case ACTION_USER_LOGIN: return 'User logged in'; + case ACTION_USER_REMOVE: return 'User removed'; + case ACTION_USER_UPDATE: return 'User updated'; + default: return eventLog.action; } }; });