mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -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",
|
"name": "@tryghost/admin-x-activitypub",
|
||||||
"version": "0.3.41",
|
"version": "0.3.42",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -185,7 +185,7 @@ const Activities: React.FC<ActivitiesProps> = ({}) => {
|
||||||
filter: {
|
filter: {
|
||||||
type: ['Follow', 'Like', `Create:Note`]
|
type: ['Follow', 'Like', `Create:Note`]
|
||||||
},
|
},
|
||||||
limit: 250,
|
limit: 120,
|
||||||
key: GET_ACTIVITIES_QUERY_KEY_NOTIFICATIONS
|
key: GET_ACTIVITIES_QUERY_KEY_NOTIFICATIONS
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue