Skip to content

Commit

Permalink
fix: Back button in data browser disappears after page refresh (#2421)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtanchak authored May 27, 2023
1 parent cd1a46e commit 6c5f19f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Toolbar/Toolbar.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let Toolbar = (props) => {
const action = useNavigationType();
const navigate = useNavigate();
let backButton;
if ((props.relation || (props.filters && props.filters.size)) && action !== NavigationType.Pop) {
if (props.relation || ((props.filters && props.filters.size) && action !== NavigationType.Pop)) {
backButton = (
<a
className={styles.iconButton}
Expand Down

0 comments on commit 6c5f19f

Please sign in to comment.