Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #165 from commercelayer/linked-tags
Browse files Browse the repository at this point in the history
Fix tag click action in order detail
  • Loading branch information
pfferrari authored May 3, 2024
2 parents 2460fad + 118c77a commit 636f9eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/app/src/pages/OrderDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ function OrderDetails(): JSX.Element {
resourceId={order.id}
overlay={{ title: 'Edit tags', description: pageTitle }}
onTagClick={(tagId) => {
setLocation(appRoutes.list.makePath(`tags_id_in=${tagId}`))
setLocation(
appRoutes.list.makePath({}, `tags_id_in=${tagId}`)
)
}}
/>
</Spacer>
Expand Down

0 comments on commit 636f9eb

Please sign in to comment.