mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 22:11:09 +03:00
Fixed feature images not showing in mentions feed
refs https://github.com/TryGhost/Team/issues/2502
This commit is contained in:
parent
8a153a83ad
commit
368d110b1b
@ -1486,6 +1486,7 @@ kbd {
|
||||
/* Mentions */
|
||||
.gh-mention-container {
|
||||
background-color: var(--whitegrey);
|
||||
border: 1px solid var(--whitegrey);
|
||||
}
|
||||
|
||||
.gh-mention-your-post-link {
|
||||
|
@ -24,6 +24,7 @@
|
||||
text-decoration: none;
|
||||
border-radius: 3px;
|
||||
background-color: var(--whitegrey-l1);
|
||||
border: 1px solid var(--whitegrey-l1);
|
||||
overflow: hidden;
|
||||
color: inherit;
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ module.exports = class BookshelfMentionRepository {
|
||||
sourceAuthor: model.get('source_author'),
|
||||
sourceExcerpt: model.get('source_excerpt'),
|
||||
sourceFavicon: model.get('source_favicon'),
|
||||
sourceFeaturedImaged: model.get('source_featured_image')
|
||||
sourceFeaturedImage: model.get('source_featured_image')
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user