diff --git a/index.html b/index.html
index 7f09874..d72c7b1 100644
--- a/index.html
+++ b/index.html
@@ -81,7 +81,7 @@
diff --git a/js/App.js b/js/App.js
index c62fbb5..ab20ead 100644
--- a/js/App.js
+++ b/js/App.js
@@ -264,6 +264,7 @@ App.prototype.showFull = function(article, slide_back) {
} else {
$("#setunread").innerHTML = "Set unread";
}
+ $("#setstarred").innerHTML = "no *";
};
@@ -308,6 +309,7 @@ App.prototype.setCurrentStarred = function() {
if(!article) return; // happens if we're not on a full article site
this.ttrss.setArticleStarred(article.id);
+ $("#setstarred").innerHTML = "*";
};
App.prototype.setCurrentUnread = function() {