mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-27 09:55:36 +00:00
Fix pipeline task filtering for failed status (#14093)
* fix task status failed name * Table's rowKey should be unique
This commit is contained in:
parent
ca81d523ee
commit
f95867abc8
@ -71,7 +71,7 @@ const ListView = ({ executions, status, loading }: ListViewProps) => {
|
|||||||
emptyText: <FilterTablePlaceHolder />,
|
emptyText: <FilterTablePlaceHolder />,
|
||||||
}}
|
}}
|
||||||
pagination={false}
|
pagination={false}
|
||||||
rowKey="name"
|
rowKey={(record) => record.name.concat(record.timestamp as string)}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -16,7 +16,7 @@ import { StatusType } from '../generated/entity/data/pipeline';
|
|||||||
export const MenuOptions = {
|
export const MenuOptions = {
|
||||||
all: 'All',
|
all: 'All',
|
||||||
[StatusType.Successful]: 'Success',
|
[StatusType.Successful]: 'Success',
|
||||||
[StatusType.Failed]: 'Failure',
|
[StatusType.Failed]: 'Failed',
|
||||||
[StatusType.Pending]: 'Pending',
|
[StatusType.Pending]: 'Pending',
|
||||||
Aborted: 'Aborted',
|
Aborted: 'Aborted',
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user