Skip to content

Commit

Permalink
fix unstarring breakage
Browse files Browse the repository at this point in the history
Unstarring has been broken in 2.7.0 and 2.7.1 after commit dd07e96.
Restore setting the internal variables.
  • Loading branch information
tanriol committed May 2, 2024
1 parent adab770 commit b14bf55
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/feedview.js
Original file line number Diff line number Diff line change
Expand Up @@ -1138,6 +1138,7 @@ EntryView.prototype = {
this.container.classList.remove('starred');
button.setAttribute('title', Strings.bookmarkEntryTooltip);
}
this.__starred = aValue;
},


Expand All @@ -1146,6 +1147,7 @@ EntryView.prototype = {
},
set tags(aValue) {
this._getElement('tags').textContent = aValue.sort().join(', ');
this.__tags = aValue;
},


Expand Down

0 comments on commit b14bf55

Please sign in to comment.