Skip to content

Commit

Permalink
fix(dashboards): Load 1000 dashboards in one API page (#15031)
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes authored Apr 12, 2023
1 parent 1cf442f commit 622e6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/models/dashboardsModel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const dashboardsModel = kea<dashboardsModelType>({
return {}
}
const { results } = await api.get(
`api/projects/${teamLogic.values.currentTeamId}/dashboards/?limit=300`
`api/projects/${teamLogic.values.currentTeamId}/dashboards/?limit=1000`
)
return idToKey(results ?? [])
},
Expand Down

0 comments on commit 622e6a0

Please sign in to comment.