Skip to content

Commit

Permalink
remove extraneous stuff added to fragment identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Mar 20, 2024
1 parent f0bc228 commit 8f17f6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/model_catalog/src/ValidationFramework.js
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ class ValidationFramework extends React.Component {

if (window.location.hash) {
let proceed = true;
const param = window.location.hash.slice(1);
const param = window.location.hash.slice(1).split("&")[0];
const key = param.split(".")[0];
const value = param.substr(param.indexOf(".") + 1);
console.log(param);
Expand Down

0 comments on commit 8f17f6c

Please sign in to comment.