mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-30 11:56:01 +00:00
fix: data filter on pipline execution page (#14796)
This commit is contained in:
parent
3f78e072e1
commit
edbc97362f
@ -103,8 +103,8 @@ const ExecutionsTab = ({ pipelineFQN, tasks }: ExecutionProps) => {
|
||||
|
||||
const onDateChange: RangePickerProps['onChange'] = (values) => {
|
||||
if (values) {
|
||||
const startTime = values[0]?.valueOf() ?? 0;
|
||||
const endTime = values[1]?.valueOf() ?? 0;
|
||||
const startTime = values[0]?.startOf('day').valueOf() ?? 0;
|
||||
const endTime = values[1]?.endOf('day').valueOf() ?? 0;
|
||||
|
||||
if (!isNaN(startTime) && !isNaN(endTime)) {
|
||||
setStartTime(startTime);
|
||||
|
Loading…
x
Reference in New Issue
Block a user