From cf09321432b441966770481eb7a4edebe06e8cd3 Mon Sep 17 00:00:00 2001 From: danfunk Date: Tue, 16 May 2023 13:19:22 -0400 Subject: [PATCH] Force Go and View buttons to be the same width. --- .../src/components/ProcessInstanceListTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx index af70ff483..c1e62fcb6 100644 --- a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx +++ b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx @@ -1601,14 +1601,14 @@ export default function ProcessInstanceListTable({ ) { hasAccessToCompleteTask = true; } - + console.log("Has Access to complete task?", hasAccessToCompleteTask, regex, processInstance.potential_owner_usernames) let buttonText = 'View'; if (hasAccessToCompleteTask && processInstance.task_id) { buttonText = 'Go'; } buttonElement = ( - );