mirror of
https://akkoma.dev/lamp/akkoma-fe.git
synced 2026-06-04 14:20:05 -04:00
Compare commits
22 Commits
4d91a7b2c3
...
2.2.1
| Author | SHA1 | Date | |
|---|---|---|---|
| a7567ce6d0 | |||
| 8e87e3d88b | |||
| 6aa276374f | |||
| 23232e1c8f | |||
| b225c3578f | |||
| 30efbaab34 | |||
| 8ca0586c0f | |||
| 938887ef91 | |||
| f31bc5310e | |||
| 925bf5b5a4 | |||
| e768ec1fca | |||
| d09f43ba7a | |||
| 748c4d8c71 | |||
| c7ddfefe34 | |||
| c0205d582a | |||
| 4ac882a3b0 | |||
| bdbc4b27b6 | |||
| 42598fc675 | |||
| 5d49edc823 | |||
| 0bc0a8d5f5 | |||
| 726d5279c1 | |||
| a0f780c455 |
+1
-1
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
|
||||||
## [Unreleased]
|
## [2.2.1] - 2020-11-11
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed regression in react popup alignment and overflowing
|
- Fixed regression in react popup alignment and overflowing
|
||||||
|
|
||||||
|
|||||||
@@ -12,9 +12,12 @@ const fetchAndUpdate = ({ store, credentials, older = false }) => {
|
|||||||
const rootState = store.rootState || store.state
|
const rootState = store.rootState || store.state
|
||||||
const timelineData = rootState.statuses.notifications
|
const timelineData = rootState.statuses.notifications
|
||||||
const hideMutedPosts = getters.mergedConfig.hideMutedPosts
|
const hideMutedPosts = getters.mergedConfig.hideMutedPosts
|
||||||
|
const allowFollowingMove = rootState.users.currentUser.allow_following_move
|
||||||
|
|
||||||
args['withMuted'] = !hideMutedPosts
|
args['withMuted'] = !hideMutedPosts
|
||||||
|
|
||||||
|
args['withMove'] = !allowFollowingMove
|
||||||
|
|
||||||
args['timeline'] = 'notifications'
|
args['timeline'] = 'notifications'
|
||||||
if (older) {
|
if (older) {
|
||||||
if (timelineData.minId !== Number.POSITIVE_INFINITY) {
|
if (timelineData.minId !== Number.POSITIVE_INFINITY) {
|
||||||
|
|||||||
Reference in New Issue
Block a user