Skip to content

Commit

Permalink
Merge pull request #23931 from dantastisk/fix/22507
Browse files Browse the repository at this point in the history
fix: 22507 Blank Page Displayed when Copying and Pasting URL next to Original URL and Reloading with Enter Key
  • Loading branch information
Gonals authored Aug 2, 2023
2 parents 751d797 + 9370618 commit 530b455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ROUTES.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export default {
const pathSegments = parsingRoute.split('/');
return {
reportID: lodashGet(pathSegments, 1),
isSubReportPageRoute: Boolean(lodashGet(pathSegments, 2)),
isSubReportPageRoute: pathSegments.length > 2,
};
},
};

0 comments on commit 530b455

Please sign in to comment.