Skip to content

Commit

Permalink
HPCC-32841 ECL Watch v9 Log view missing filter fields
Browse files Browse the repository at this point in the history
fixes an issue introduced by HPCC-32751 which incorrectly removed the
"Start Date" and "End Date" fields from the Filter dialog

Signed-off-by: Jeremy Clements <[email protected]>
  • Loading branch information
jeclrsg committed Oct 21, 2024
1 parent 4a7afe3 commit add2ae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/Logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export const Logs: React.FunctionComponent<LogsProps> = ({
}
}
const colTypes = logColumns?.map(c => c.LogType.toString()) ?? [];
removeAllExcept(retVal, colTypes);
removeAllExcept(retVal, [...colTypes, "LogLineLimit", "StartDate", "EndDate"]);
return retVal;
}, [filter, logColumns, wuid]);

Expand Down

0 comments on commit add2ae5

Please sign in to comment.