Merge pull request #595 from koenkooi/scarequotes
Don't use scare quotes when displaying the username.
This commit is contained in:
commit
89b43a42c4
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ function LoginStateViewModel() {
|
|||
|
||||
self.userMenuText = ko.computed(function() {
|
||||
if (self.loggedIn()) {
|
||||
return "\"" + self.username() + "\"";
|
||||
return self.username();
|
||||
} else {
|
||||
return gettext("Login");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue