Merge branch 'release/0.7.1.0' into next-minor
This commit is contained in:
commit
4bf0a74382
2 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ after you've upgraded.
|
||||||
## Refactor
|
## Refactor
|
||||||
* Remove title from profile photo upload button [#7551](https://github.com/diaspora/diaspora/pull/7551)
|
* Remove title from profile photo upload button [#7551](https://github.com/diaspora/diaspora/pull/7551)
|
||||||
* Remove Internet Explorer workarounds [#7557](https://github.com/diaspora/diaspora/pull/7557)
|
* Remove Internet Explorer workarounds [#7557](https://github.com/diaspora/diaspora/pull/7557)
|
||||||
* Sort notifications by last interaction [#7568](https://github.com/diaspora/diaspora/pull/7568)
|
* Sort notifications by last interaction [#7568](https://github.com/diaspora/diaspora/pull/7568) [#7648](https://github.com/diaspora/diaspora/pull/7648)
|
||||||
* Remove tiff support from photos [#7576](https://github.com/diaspora/diaspora/pull/7576)
|
* Remove tiff support from photos [#7576](https://github.com/diaspora/diaspora/pull/7576)
|
||||||
* Remove reference from reshares when original post is deleted [#7578](https://github.com/diaspora/diaspora/pull/7578)
|
* Remove reference from reshares when original post is deleted [#7578](https://github.com/diaspora/diaspora/pull/7578)
|
||||||
* Merge migrations from before 0.6.0.0 to CreateSchema [#7580](https://github.com/diaspora/diaspora/pull/7580)
|
* Merge migrations from before 0.6.0.0 to CreateSchema [#7580](https://github.com/diaspora/diaspora/pull/7580)
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ class NotificationsController < ApplicationController
|
||||||
|
|
||||||
pager.replace(result)
|
pager.replace(result)
|
||||||
end
|
end
|
||||||
@group_days = @notifications.group_by{|note| note.created_at.strftime('%Y-%m-%d')}
|
@group_days = @notifications.group_by {|note| note.updated_at.strftime("%Y-%m-%d") }
|
||||||
|
|
||||||
@unread_notification_count = current_user.unread_notifications.count
|
@unread_notification_count = current_user.unread_notifications.count
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue