Skip to content

Commit

Permalink
Show correct state text on pipeline run node side drawer
Browse files Browse the repository at this point in the history
  • Loading branch information
DaoDaoNoCode committed Jul 23, 2024
1 parent 957169b commit 09a7807
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
import { relativeDuration } from '~/utilities/time';
import { RuntimeStateKF } from '~/concepts/pipelines/kfTypes';
import { PipelineTask } from '~/concepts/pipelines/topology';
import { translateStatusForNode } from '~/concepts/pipelines/topology/parseUtils';

type SelectedNodeDetailsTabProps = {
task: PipelineTask;
Expand Down Expand Up @@ -36,7 +35,7 @@ const SelectedNodeDetailsTab: React.FC<SelectedNodeDetailsTabProps> = ({ task })
taskName,
{
key: 'Status',
value: translateStatusForNode(state) ?? '-',
value: state ?? '-',
},
{
key: 'Started',
Expand Down

0 comments on commit 09a7807

Please sign in to comment.