mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 22:34:01 -05:00
Reduce number of notifications retrieved in admin-x-activtypub
(#21928)
no refs `250` takes a bit too long on the server so reducing it down to `120` for now
This commit is contained in:
parent
e08959a1b5
commit
1e9d09951e
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tryghost/admin-x-activitypub",
|
||||
"version": "0.3.41",
|
||||
"version": "0.3.42",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -185,7 +185,7 @@ const Activities: React.FC<ActivitiesProps> = ({}) => {
|
|||
filter: {
|
||||
type: ['Follow', 'Like', `Create:Note`]
|
||||
},
|
||||
limit: 250,
|
||||
limit: 120,
|
||||
key: GET_ACTIVITIES_QUERY_KEY_NOTIFICATIONS
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue