0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Adds (Never) for users who haven't been seen

Closes #3970
This commit is contained in:
Gabor Javorszky 2014-09-05 16:45:34 +01:00
parent f7b85524d8
commit 5f06f69d18

View file

@ -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 () {