Skip to content

Commit 6c5f19f

Browse files
authored
fix: Back button in data browser disappears after page refresh (#2421)
1 parent cd1a46e commit 6c5f19f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Toolbar/Toolbar.react.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let Toolbar = (props) => {
1515
const action = useNavigationType();
1616
const navigate = useNavigate();
1717
let backButton;
18-
if ((props.relation || (props.filters && props.filters.size)) && action !== NavigationType.Pop) {
18+
if (props.relation || ((props.filters && props.filters.size) && action !== NavigationType.Pop)) {
1919
backButton = (
2020
<a
2121
className={styles.iconButton}

0 commit comments

Comments
 (0)