Skip to content

Commit

Permalink
fix (Breadcrumbs): Missing label for projects outside the first page (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ericpgreen2 committed Jan 30, 2025
1 parent ba8629e commit c4fa67f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions web-admin/src/features/navigation/TopNavigationBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,17 @@
},
);
$: projectsQuery = listProjects(organization, undefined, {
query: {
enabled: !!organization,
$: projectsQuery = listProjects(
organization,
{
pageSize: 100,
},
});
{
query: {
enabled: !!organization,
},
},
);
$: visualizationsQuery = useDashboardsV2(instanceId);
Expand Down

1 comment on commit c4fa67f

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.