Skip to content

Commit

Permalink
HPCC-30459 ECL Watch v9 fix DFU WU XML tab content missing
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy Clements <[email protected]>
  • Loading branch information
jeclrsg committed Oct 26, 2023
1 parent 5c9ff99 commit bd230f0
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 20 deletions.
69 changes: 51 additions & 18 deletions esp/src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion esp/src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@hpcc-js/chart": "2.81.4",
"@hpcc-js/codemirror": "2.60.9",
"@hpcc-js/common": "2.71.9",
"@hpcc-js/comms": "2.83.2",
"@hpcc-js/comms": "2.84.4",
"@hpcc-js/dataflow": "8.1.4",
"@hpcc-js/eclwatch": "2.73.22",
"@hpcc-js/graph": "2.85.5",
Expand Down
2 changes: 1 addition & 1 deletion esp/src/src-react/components/DFUWorkunitDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const DFUWorkunitDetails: React.FunctionComponent<DFUWorkunitDetailsProps
React.useEffect(() => {
if (!workunit) return;
workunit?.fetchXML().then(response => {
setWuXML(response.file);
setWuXML(response);
}).catch(err => logger.error(err));
}, [workunit]);

Expand Down

0 comments on commit bd230f0

Please sign in to comment.