From 72e99885aa51c5bdded417fd5e0c453ec27b20d7 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 11 Feb 2019 14:47:02 -0800 Subject: [PATCH] Fix wording --- src/js/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 '';