summaryrefslogtreecommitdiffstats
path: root/src/components/SidebarFeedLinkActions.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/SidebarFeedLinkActions.vue')
-rw-r--r--src/components/SidebarFeedLinkActions.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SidebarFeedLinkActions.vue b/src/components/SidebarFeedLinkActions.vue
index e9f8bd521..444254cc4 100644
--- a/src/components/SidebarFeedLinkActions.vue
+++ b/src/components/SidebarFeedLinkActions.vue
@@ -131,7 +131,7 @@ export default Vue.extend({
rename() {
const title = window.prompt(t('news', 'Rename Feed'), this.feed.title)
- // null on escape
+ // null when user presses escape (do nothing)
if (title !== null) {
this.$store.dispatch(ACTIONS.FEED_SET_TITLE, { feed: this.feed, title })
}