From 2a1df64ae15763b3e9d7279388db5af0142c3697 Mon Sep 17 00:00:00 2001 From: jasquat Date: Tue, 11 Feb 2025 16:33:56 -0500 Subject: [PATCH] use better arrow from pm show page w/ burnettk --- .../components/ProcessInstanceListTable.tsx | 27 ++++++++++--------- 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/spiffworkflow-frontend/src/a-spiffui-v3/components/ProcessInstanceListTable.tsx b/spiffworkflow-frontend/src/a-spiffui-v3/components/ProcessInstanceListTable.tsx index 56d17a2c8..8e241bed7 100644 --- a/spiffworkflow-frontend/src/a-spiffui-v3/components/ProcessInstanceListTable.tsx +++ b/spiffworkflow-frontend/src/a-spiffui-v3/components/ProcessInstanceListTable.tsx @@ -1,4 +1,4 @@ -import { ArrowRight, OpenInNew, Refresh } from '@mui/icons-material'; +import { ArrowRightAlt, OpenInNew, Refresh } from '@mui/icons-material'; import { TableRow, Table, @@ -42,6 +42,7 @@ import { childrenForErrorObject, errorForDisplayFromString, } from './ErrorDisplay'; +import SpiffTooltip from './SpiffTooltip'; type OwnProps = { additionalReportFilters?: ReportFilter[]; @@ -430,15 +431,17 @@ export default function ProcessInstanceListTable({ let filterButtonLink = null; if (showLinkToReport && pagination && pagination.total) { filterButtonLink = ( - - - navigate(`/newui/process-instances?report_hash=${reportHash}`) - } - > - - + + + + navigate(`/newui/process-instances?report_hash=${reportHash}`) + } + > + + + ); } @@ -447,7 +450,7 @@ export default function ProcessInstanceListTable({ } return ( - {tableTitle()} + {tableTitle()} {filterButtonLink} ); @@ -626,7 +629,7 @@ export default function ProcessInstanceListTable({ } return ( <> - {tableTitleLine()} + {tableTitleLine()} {filterComponent ? filterComponent() : null} {tableElement}