Skip to content

Commit

Permalink
fix(pci-workflow): workflow delete url
Browse files Browse the repository at this point in the history
ref: DTCORE-2758
Signed-off-by: Florian Renaut <[email protected]>
  • Loading branch information
frenautvh committed Oct 14, 2024
1 parent ede40df commit d7a032e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type ActionsProps = {
export default function Actions({ workflow }: Readonly<ActionsProps>) {
const { t } = useTranslation('listing');
const hrefExecutions = useHref(`./${workflow.id}/executions`);
const hrefDelete = useHref(`./delete?workflowId=${workflow.id}`);
const hrefDelete = useHref(`./delete/${workflow.id}`);

let items = [
{
Expand Down

0 comments on commit d7a032e

Please sign in to comment.