Skip to content

Commit

Permalink
Merge pull request #18904 from jeclrsg/hpcc-32120-wu-logs
Browse files Browse the repository at this point in the history
HPCC-32120 ECL Watch v9 fix WU Logs not filtering on WUID
  • Loading branch information
GordonSmith authored Jul 24, 2024
2 parents 53e54c1 + 96884ec commit 5f1f8ae
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
32 changes: 22 additions & 10 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 @@ -44,7 +44,7 @@
"@hpcc-js/chart": "2.83.4",
"@hpcc-js/codemirror": "2.62.1",
"@hpcc-js/common": "2.71.18",
"@hpcc-js/comms": "2.93.0",
"@hpcc-js/comms": "2.94.0",
"@hpcc-js/dataflow": "8.1.7",
"@hpcc-js/eclwatch": "2.74.8",
"@hpcc-js/graph": "2.85.16",
Expand Down
3 changes: 2 additions & 1 deletion esp/src/src-react/components/forms/Fields.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ export const CloudContainerNameField: React.FunctionComponent<CloudContainerName
text: row
};
}) || [];
setOptions(options);
setOptions([{ key: "", text: "" }, ...options]);
}, [cloudContainerNames]);

return <ComboBox {...props} allowFreeform={true} autoComplete={"on"} options={options} />;
Expand Down Expand Up @@ -1340,6 +1340,7 @@ export function createInputs(fields: Fields, onChange?: (id: string, newValue: a
label: field.label,
field: <CloudContainerNameField
key={fieldID}
selectedKey={field.value}
onChange={(ev, row) => {
onChange(fieldID, row.key);
setDropzone(row.key as string);
Expand Down

0 comments on commit 5f1f8ae

Please sign in to comment.