fix: timeline支持CHILD_PROCESS_NODE的loading状态

pull/624/head
Lesan 2024-12-18 10:01:55 +08:00
parent f35a64961e
commit ad619f4738
1 changed files with 2 additions and 1 deletions

View File

@ -256,7 +256,8 @@ const getApprovalNodeIcon = (taskStatus: number, nodeType: NodeType) => {
if (
nodeType === NodeType.START_USER_NODE ||
nodeType === NodeType.USER_TASK_NODE ||
nodeType === NodeType.END_EVENT_NODE
nodeType === NodeType.END_EVENT_NODE ||
nodeType === NodeType.CHILD_PROCESS_NODE
) {
return statusIconMap[taskStatus]?.icon
}