diff --git a/js/templates.js b/js/templates.js
index e77015a5..ac303393 100644
--- a/js/templates.js
+++ b/js/templates.js
@@ -113,7 +113,7 @@ angular.module('views/share_credential.html', []).run(['$templateCache', functio
angular.module('views/show_vault.html', []).run(['$templateCache', function($templateCache) {
'use strict';
$templateCache.put('views/show_vault.html',
- '
| {{ ::credential.label}} {{ ::tag.text}} |
');
+ '| {{ ::tag.text}} {{ ::credential.label}} |
');
}]);
angular.module('views/vaults.html', []).run(['$templateCache', function($templateCache) {
diff --git a/templates/views/show_vault.html b/templates/views/show_vault.html
index 756be080..6feb87ce 100644
--- a/templates/views/show_vault.html
+++ b/templates/views/show_vault.html
@@ -44,16 +44,18 @@
ng-click="selectCredential(credential)"
ng-class="{'selected': selectedCredential.credential_id == credential.credential_id}">
+
+ {{ ::tag.text}}
+
+
{{ ::credential.label}}
-
- {{ ::tag.text}}
-
+
|