mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
Merge pull request #3971 from javorszky/iss3970
Adds (Never) for users who haven't been seen
This commit is contained in:
commit
15a17bef64
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ var SettingsUserController = Ember.ObjectController.extend({
|
|||
last_login: Ember.computed('user.last_login', function () {
|
||||
var lastLogin = this.get('user.last_login');
|
||||
|
||||
return lastLogin ? lastLogin.fromNow() : '';
|
||||
return lastLogin ? lastLogin.fromNow() : '(Never)';
|
||||
}),
|
||||
|
||||
created_at: Ember.computed('user.created_at', function () {
|
||||
|
|
Loading…
Add table
Reference in a new issue