just use the word id in the header and add tooltip

This commit is contained in:
burnettk 2022-11-17 13:48:11 -05:00
parent 89233fda59
commit 80371d0574
1 changed files with 4 additions and 2 deletions

View File

@ -455,7 +455,7 @@ export default function ProcessInstanceListTable({
const buildTable = () => {
const headerLabels: Record<string, string> = {
id: 'Process Instance Id',
id: 'Id',
process_model_identifier: 'Process Model',
start_in_seconds: 'Start Time',
end_in_seconds: 'End Time',
@ -530,7 +530,9 @@ export default function ProcessInstanceListTable({
<TableHead>
<TableRow>
{headers.map((header: any) => (
<TableHeader key={header}>{header}</TableHeader>
<TableHeader key={header} title="Process Instance Id">
{header}
</TableHeader>
))}
</TableRow>
</TableHead>