mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-18 20:59:41 +02:00
fix: Recipe Timeline Not Filtering (#5666)
This commit is contained in:
parent
63a4d4c801
commit
e1a04ba673
1 changed files with 1 additions and 4 deletions
|
@ -219,10 +219,7 @@ export class RecipeAPI extends BaseCRUDAPI<CreateRecipe, Recipe, Recipe> {
|
||||||
|
|
||||||
async getAllTimelineEvents(page = 1, perPage = -1, params = {} as any) {
|
async getAllTimelineEvents(page = 1, perPage = -1, params = {} as any) {
|
||||||
return await this.requests.get<PaginationData<RecipeTimelineEventOut>>(
|
return await this.requests.get<PaginationData<RecipeTimelineEventOut>>(
|
||||||
routes.recipesTimelineEvent,
|
routes.recipesTimelineEvent, { page, perPage, ...params },
|
||||||
{
|
|
||||||
params: { page, perPage, ...params },
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue