diff --git a/web/src/ar/pages/artifact-list/components/ArtifactListTable/ArtifactListTable.tsx b/web/src/ar/pages/artifact-list/components/ArtifactListTable/ArtifactListTable.tsx index 1ba8fb29e..8a533b832 100644 --- a/web/src/ar/pages/artifact-list/components/ArtifactListTable/ArtifactListTable.tsx +++ b/web/src/ar/pages/artifact-list/components/ArtifactListTable/ArtifactListTable.tsx @@ -28,6 +28,7 @@ import { ArtifactListPullCommandCell, ArtifactListVulnerabilitiesCell, ArtifactNameCell, + ArtifactVersionActions, LatestArtifactCell } from './ArtifactListTableCell' import css from './ArtifactListTable.module.scss' @@ -111,7 +112,7 @@ export default function ArtifactListTable(props: ArtifactListTableProps): JSX.El { Header: '', accessor: 'actions', - Cell: LatestArtifactCell, + Cell: ArtifactVersionActions, disableSortBy: true } ].filter(Boolean) as unknown as Column[] diff --git a/web/src/ar/pages/webhook-list/components/Forms/constants.ts b/web/src/ar/pages/webhook-list/components/Forms/constants.ts index ffca60191..80bf79d96 100644 --- a/web/src/ar/pages/webhook-list/components/Forms/constants.ts +++ b/web/src/ar/pages/webhook-list/components/Forms/constants.ts @@ -25,6 +25,6 @@ interface TriggerLabelOption { export const TriggerLabelOptions: TriggerLabelOption[] = [ { label: 'webhookList.triggers.artifactCreation', value: 'ARTIFACT_CREATION' }, - { label: 'webhookList.triggers.artifactDeletion', value: 'ARTIFACT_DELETION' }, - { label: 'webhookList.triggers.artifactModification', value: 'ARTIFACT_MODIFICATION' } + { label: 'webhookList.triggers.artifactDeletion', value: 'ARTIFACT_DELETION' } + // { label: 'webhookList.triggers.artifactModification', value: 'ARTIFACT_MODIFICATION' } ]