Skip to content

Commit

Permalink
Merge branch 'releases/december-2024' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
BatuhanW committed Dec 6, 2024
2 parents ec23f00 + 42d730a commit 749527c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .changeset/dry-tomatoes-beg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@refinedev/core": minor
---

This PR fixes an issue where the ListButton component doesn't include a query filter in the navigation URL.

[Resolves #6528](https://github.com/refinedev/refine/issues/6528)
5 changes: 5 additions & 0 deletions packages/core/src/hooks/navigation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export const useNavigation = () => {
return go({
to: composeRoute(createActionRoute, resourceItem?.meta, parsed, meta),
type: "path",
query: meta.query,
}) as string;
};

Expand Down Expand Up @@ -138,6 +139,7 @@ export const useNavigation = () => {
id: encodedId,
}),
type: "path",
query: meta.query,
}) as string;
};

Expand Down Expand Up @@ -192,6 +194,7 @@ export const useNavigation = () => {
id: encodedId,
}),
type: "path",
query: meta.query,
}) as string;
};

Expand Down Expand Up @@ -245,6 +248,7 @@ export const useNavigation = () => {
id: encodedId,
}),
type: "path",
query: meta.query,
}) as string;
};

Expand Down Expand Up @@ -295,6 +299,7 @@ export const useNavigation = () => {
return go({
to: composeRoute(listActionRoute, resourceItem?.meta, parsed, meta),
type: "path",
query: meta.query,
}) as string;
};

Expand Down

0 comments on commit 749527c

Please sign in to comment.