Skip to content

Commit

Permalink
fix variables in process-details page
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayJagan committed Aug 31, 2023
1 parent bf28115 commit 1053d35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const ProcessDetails: React.FC<ProcessDetailsProps> = ({
};
const getVariableJSON = (): void => {
if (data && data.id === processDetails.id) {
setUpdateJson(JSON.parse(data.variables));
setUpdateJson(data.variables);
}
};
/* istanbul ignore else*/
Expand Down

0 comments on commit 1053d35

Please sign in to comment.