diff --git a/src/app/directives/pageTitleDirective.js b/src/app/directives/pageTitleDirective.js
index 8385b3f8..78c7a05f 100644
--- a/src/app/directives/pageTitleDirective.js
+++ b/src/app/directives/pageTitleDirective.js
@@ -6,9 +6,9 @@ angular
link: function (scope, element) {
var listener = function (event, toState, toParams, fromState, fromParams) {
// Default title
- var title = 'bitwarden Password Manager';
+ var title = 'bitwarden Web Vault';
if (toState.data && toState.data.pageTitle) {
- title = toState.data.pageTitle + ' - bitwarden Password Manager';
+ title = toState.data.pageTitle + ' - ' + title;
}
$timeout(function () {
diff --git a/src/index.html b/src/index.html
index b6fe9f68..3da5319f 100644
--- a/src/index.html
+++ b/src/index.html
@@ -78,7 +78,7 @@