mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Merge pull request #3934 from PaulAdamDavis/fix-cover-image
Fix user cover images
This commit is contained in:
commit
254d890dec
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ var SettingsUserController = Ember.ObjectController.extend({
|
||||||
if (Ember.isBlank(cover)) {
|
if (Ember.isBlank(cover)) {
|
||||||
cover = this.get('coverDefault');
|
cover = this.get('coverDefault');
|
||||||
}
|
}
|
||||||
return cover;
|
return 'background-image: url(' + cover + ')';
|
||||||
}),
|
}),
|
||||||
|
|
||||||
coverTitle: Ember.computed('user.name', function () {
|
coverTitle: Ember.computed('user.name', function () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue