diff --git a/spiffworkflow-frontend/cypress/support/commands.js b/spiffworkflow-frontend/cypress/support/commands.js index b71dde717..624db671e 100644 --- a/spiffworkflow-frontend/cypress/support/commands.js +++ b/spiffworkflow-frontend/cypress/support/commands.js @@ -129,7 +129,7 @@ Cypress.Commands.add('basicPaginationTest', () => { // to be sure it's finished, grab the log id from page 1. remember it. // then use the magical contains command that waits for the element to exist AND // for that element to contain the text we're looking for. - cy.getBySel('process-instance-log-id') + cy.getBySel('paginated-entity-id') .first() .then(($element) => { const oldId = $element.text().trim(); @@ -137,7 +137,7 @@ Cypress.Commands.add('basicPaginationTest', () => { cy.contains(/\b3–4 of \d+/); cy.get('.cds--pagination__button--backward').click(); cy.contains(/\b1–2 of \d+/); - cy.contains('[data-qa=process-instance-log-id]', oldId); + cy.contains('[data-qa=paginated-entity-id]', oldId); }); }); diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx index 671e50031..5058235ba 100644 --- a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx +++ b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx @@ -1111,7 +1111,7 @@ export default function ProcessInstanceListTable({ to={`${processInstancePathPrefix}/${modifiedProcessModelId}/${id}`} title={`View process instance ${id}`} > - {id} + {id} ); }; diff --git a/spiffworkflow-frontend/src/routes/ProcessInstanceLogList.tsx b/spiffworkflow-frontend/src/routes/ProcessInstanceLogList.tsx index 89bc869cc..b4a4f683a 100644 --- a/spiffworkflow-frontend/src/routes/ProcessInstanceLogList.tsx +++ b/spiffworkflow-frontend/src/routes/ProcessInstanceLogList.tsx @@ -45,7 +45,7 @@ export default function ProcessInstanceLogList() { const rowToUse = row as any; return ( - {rowToUse.id} + {rowToUse.id} {rowToUse.message} {rowToUse.bpmn_task_name} {isDetailedView && (