Skip to content

Commit

Permalink
Merge pull request #9364 from intwarehq/fix-highlight-setting
Browse files Browse the repository at this point in the history
[FIX] Highlight setting not working correctly
  • Loading branch information
rodrigok committed Jan 10, 2018
2 parents 90892f3 + 238cb48 commit 21d5b67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Template.accountPreferences.helpers({
},
highlights() {
const userHighlights = RocketChat.getUserPreference(Meteor.user(), 'highlights');
return userHighlights ? userHighlights.join(', ') : undefined;
return userHighlights ? userHighlights.join('\n') : undefined;
},
desktopNotificationEnabled() {
return KonchatNotification.notificationStatus.get() === 'granted' || (window.Notification && Notification.permission === 'granted');
Expand Down

0 comments on commit 21d5b67

Please sign in to comment.