We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19f5d9d commit 3b1e617Copy full SHA for 3b1e617
src/ui/layouts/pipelines/Pipelines/List/Status/index.tsx
@@ -11,8 +11,8 @@ import {
11
import { useService } from './useService';
12
13
export const Status: React.FC<{ pipeline: TPipeline }> = ({ pipeline }) => {
14
- // const { lastThreeRuns } = useService({ pipeline });
15
- const lastThreeRuns: any[] = ['failed', 'completed', 'running', 'cached'];
+ const { lastThreeRuns } = useService({ pipeline });
+ // const lastThreeRuns: any[] = ['failed', 'completed', 'running', 'cached'];
16
return (
17
<FlexBox alignItems="center">
18
{lastThreeRuns.map((status: any, index: number) => (
0 commit comments