Merge branch 'masto-notifications-counter' into 'develop'

Mastodon: hide notifications counter

See merge request soapbox-pub/soapbox-fe!775
merge-requests/777/head
Alex Gleason 2021-09-20 18:12:28 +00:00
commit 073db97490
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -56,7 +56,7 @@ const notificationToMap = notification => ImmutableMap({
const isValid = notification => Boolean(notification.account.id);
const countUnseen = notifications => notifications.reduce((acc, cur) =>
get(cur, ['pleroma', 'is_seen'], false) === false ? acc + 1 : acc, 0);
get(cur, ['pleroma', 'is_seen'], true) === false ? acc + 1 : acc, 0);
const normalizeNotification = (state, notification) => {
const top = state.get('top');