We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 177b635 commit 75d8c36Copy full SHA for 75d8c36
app/components/pipeline/nodes/output/OutputNode.tsx
@@ -80,7 +80,13 @@ export function OutputNode() {
80
}, [litlytics]);
81
82
const doRunPipeline = async () => {
83
- await litlytics.runPipeline();
+ await litlytics.runPipeline({
84
+ // very hacky, but will trigger UI re-renders
85
+ // while setting status internally won't because proxy doesn't see those triggers
86
+ onStatus: (status) => {
87
+ litlytics.setPipelineStatus(status);
88
+ },
89
+ });
90
};
91
92
const running =
0 commit comments