mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-26 09:22:14 +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 />,
|
||||
}}
|
||||
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 = {
|
||||
all: 'All',
|
||||
[StatusType.Successful]: 'Success',
|
||||
[StatusType.Failed]: 'Failure',
|
||||
[StatusType.Failed]: 'Failed',
|
||||
[StatusType.Pending]: 'Pending',
|
||||
Aborted: 'Aborted',
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user