Adjusting size of side options.

This commit is contained in:
Samuel Clay 2022-05-17 16:16:27 -04:00
parent 83d280d9c1
commit cf90435714
2 changed files with 4 additions and 4 deletions

View file

@ -4442,7 +4442,7 @@ body {
transition: width 0.12s ease-out;
}
.NB-story-starred .NB-feed-story-sideoptions-container {
width: 194px;
width: 164px;
}
.NB-narrow-content .NB-feed-story-sideoptions-container {

View file

@ -109,9 +109,9 @@ NEWSBLUR.Models.Story = Backbone.Model.extend({
return content;
},
story_authors: function() {
return this.get('story_authors').replace(/</g, '&lt;')
.replace(/>/g, '&gt;');
story_authors: function () {
let authors = this.get('story_authors') || "";
return authors.replace(/</g, '&lt;').replace(/>/g, '&gt;');
},
user_highlights: function() {