Skip to content

Commit

Permalink
Small fixes; Added collation to queries.
Browse files Browse the repository at this point in the history
  • Loading branch information
razvanMiu committed Nov 24, 2020
1 parent e0dea3b commit 004ac8f
Show file tree
Hide file tree
Showing 11 changed files with 354 additions and 355 deletions.
8 changes: 7 additions & 1 deletion src/components/manage/Blocks/DetailedLink/View.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,13 @@ const View = (props) => {
}
return e.preventDefault;
}}
to={!backButton && getPath(detailedLink?.path)}
to={
!backButton && {
pathname: getPath(detailedLink?.path),
search: '',
hash: '',
}
}
>
<span>{buttonTitle || detailedLink?.title || 'Go'}</span>
</Link>
Expand Down
Loading

0 comments on commit 004ac8f

Please sign in to comment.