mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-03 15:16:56 +00:00
OSS changes to pass the workflow start timestamp (#21018)
This commit is contained in:
parent
56d4732da8
commit
056fb16377
@ -64,6 +64,7 @@ const Ingestion: React.FC<IngestionProps> = ({
|
||||
onCollateAgentPageChange,
|
||||
agentCounts,
|
||||
refreshAgentsList,
|
||||
workflowStartAt,
|
||||
}: IngestionProps) => {
|
||||
const { t } = useTranslation();
|
||||
const history = useHistory();
|
||||
@ -247,6 +248,7 @@ const Ingestion: React.FC<IngestionProps> = ({
|
||||
collateAgentsList={collateAgentsList}
|
||||
isCollateAgentLoading={isCollateAgentLoading}
|
||||
serviceDetails={serviceDetails}
|
||||
workflowStartAt={workflowStartAt}
|
||||
onCollateAgentPageChange={onCollateAgentPageChange}
|
||||
/>
|
||||
) : (
|
||||
|
@ -50,6 +50,7 @@ export interface IngestionProps {
|
||||
onCollateAgentPageChange?: (pagingHandlerParams: PagingHandlerParams) => void;
|
||||
agentCounts?: Record<ServiceAgentSubTabs, number>;
|
||||
refreshAgentsList: (agentListType: ServiceAgentSubTabs) => Promise<void>;
|
||||
workflowStartAt?: number;
|
||||
}
|
||||
|
||||
export interface SelectedRowDetails {
|
||||
|
@ -1161,6 +1161,7 @@ const ServiceDetailsPage: FunctionComponent = () => {
|
||||
serviceDetails={serviceDetails}
|
||||
statusFilter={statusFilter}
|
||||
typeFilter={typeFilter}
|
||||
workflowStartAt={workflowStatesData?.mainInstanceState.startedAt}
|
||||
onCollateAgentPageChange={onCollateAgentPageChange}
|
||||
onIngestionWorkflowsUpdate={getAllIngestionWorkflows}
|
||||
onPageChange={onPageChange}
|
||||
@ -1188,6 +1189,7 @@ const ServiceDetailsPage: FunctionComponent = () => {
|
||||
handleTypeFilterChange,
|
||||
statusFilter,
|
||||
typeFilter,
|
||||
workflowStatesData?.mainInstanceState.startedAt,
|
||||
]
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user