Fixed feature images not showing in mentions feed

refs https://github.com/TryGhost/Team/issues/2502
This commit is contained in:
Djordje Vlaisavljevic 2023-01-30 21:49:40 +00:00
parent 8a153a83ad
commit 368d110b1b
3 changed files with 3 additions and 1 deletions

View File

@ -1486,6 +1486,7 @@ kbd {
/* Mentions */
.gh-mention-container {
background-color: var(--whitegrey);
border: 1px solid var(--whitegrey);
}
.gh-mention-your-post-link {

View File

@ -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;
}

View File

@ -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')
});
}