;
content: FlowItem;
- flows?: FlowItem[];
isTodos?: boolean;
}
@@ -274,16 +266,6 @@
retryLoading: false,
});
- const manualNexFlowDisaply = computed(() => {
- if (props.flows.length > 0) {
- const manualIndex = props.flows.findIndex((item) => item.flow_type === 'PAUSE');
- if (manualIndex > -1) {
- return props.flows[manualIndex + 1].flow_type_display;
- }
- }
- return '';
- });
-
const isPause = computed(() => {
const { content } = props;
return content.status === 'RUNNING' && content.flow_type === 'PAUSE';