From 0446f7c0a5496d3acad9cf63489ca4aed6bc5b44 Mon Sep 17 00:00:00 2001 From: jasquat Date: Mon, 24 Apr 2023 16:12:08 -0400 Subject: [PATCH] rename Actions column to Action w/ burnettk --- .../src/components/ProcessInstanceListTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx index 9c457e2c8..2aaf2039d 100644 --- a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx +++ b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx @@ -1416,7 +1416,7 @@ export default function ProcessInstanceListTable({ return getHeaderLabel((column as any).Header); }); if (showActionsColumn) { - headers.push('Actions'); + headers.push('Action'); } const rows = processInstances.map((row: any) => {