Skip to content

Commit

Permalink
fix: PipelinesTable incorrectly using TriggerLink
Browse files Browse the repository at this point in the history
We migrated TriggerLink to use the term trigger instead of build to be
more accurate. With that change we also split the text and link to be
separate, which we didn't address in the PipelinesTable either
  • Loading branch information
Venefilyn authored and lachmanfrantisek committed Apr 8, 2024
1 parent 3789620 commit 11e87d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/app/Pipelines/PipelinesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
} from "@patternfly/react-table/deprecated";

import { Button, LabelGroup } from "@patternfly/react-core";
import { TriggerLink } from "../Trigger/TriggerLink";
import { TriggerLink, TriggerSuffix } from "../Trigger/TriggerLink";
import { ErrorConnection } from "../Errors/ErrorConnection";
import { Preloader } from "../Preloader/Preloader";
import { ForgeIcon } from "../Forge/ForgeIcon";
Expand Down Expand Up @@ -151,7 +151,9 @@ const PipelinesTable = () => {
{
title: (
<strong>
<TriggerLink builds={run.trigger} />
<TriggerLink trigger={run.trigger}>
<TriggerSuffix trigger={run.trigger} />
</TriggerLink>
</strong>
),
},
Expand Down

0 comments on commit 11e87d8

Please sign in to comment.