diff --git a/src/js/index.js b/src/js/index.js index a722827d7..738a1bc7d 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -448,7 +448,7 @@ app.filter('eventLogDetails', function() { case ACTION_APP_INSTALL: if (!data.app) return ''; - return data.app.manifest.title + ' was installed at ' + (data.app.fqdn || data.app.location) + ' with version ' + data.app.manifest.version; + return data.app.manifest.title + ' (package version ' + data.app.manifest.version + ') was installed at ' + (data.app.fqdn || data.app.location); case ACTION_APP_RESTORE: if (!data.app) return ''; @@ -461,7 +461,7 @@ app.filter('eventLogDetails', function() { case ACTION_APP_UNINSTALL: if (!data.app) return ''; - return data.app.manifest.title + ' was uninstalled at ' + (data.app.fqdn || data.app.location) + ' with version ' + data.app.manifest.version; + return data.app.manifest.title + ' (package version ' + data.app.manifest.version + ') was uninstalled at ' + (data.app.fqdn || data.app.location); case ACTION_APP_UPDATE: if (!data.app) return '';