Skip to content

Commit

Permalink
Rudimentary CORE-1183 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmcorvidae committed Apr 8, 2024
1 parent d714dd6 commit 41a9cf2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/data/toolbar/DataDotMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,9 @@ function DataDotMenu(props) {
onClose={() => setPathListDlgOpen(false)}
onCreatePathList={(id, path) => {
setPathListDlgOpen(false);
routeToFile(id, path);
if (id && path) {
routeToFile(id, path);
}
}}
onCancel={() => setPathListDlgOpen(false)}
startingPath={path}
Expand Down

0 comments on commit 41a9cf2

Please sign in to comment.