Skip to content

Commit

Permalink
feat: improvements of issue listing
Browse files Browse the repository at this point in the history
- remove version from listing
- add tolltip to explain culprit

Part of #1014
  • Loading branch information
Francisco2002 committed Mar 5, 2025
1 parent 7e0b691 commit c46d8de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 5 additions & 7 deletions dashboard/src/components/IssueTable/IssueTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,6 @@ const columns: ColumnDef<IssueListingTableItem>[] = [
row.original.id
),
},
{
accessorKey: 'version',
header: ({ column }): JSX.Element => (
<TableHeader column={column} intlKey="issueDetails.version" />
),
},
{
id: 'culprit',
accessorFn: (original, _): boolean[] => {
Expand All @@ -113,7 +107,11 @@ const columns: ColumnDef<IssueListingTableItem>[] = [
];
},
header: ({ column }): JSX.Element => (
<TableHeader column={column} intlKey="issueDetails.culpritTitle" />
<TableHeader
column={column}
intlKey="issueDetails.culpritTitle"
tooltipId="issueListing.culpritInfo"
/>
),
cell: ({ row }): JSX.Element => (
<IssueCulprit
Expand Down
2 changes: 2 additions & 0 deletions dashboard/src/locales/messages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ export const messages = {
'issueDetails.reportSubject': 'Report Subject',
'issueDetails.reportUrl': 'Report URL',
'issueDetails.version': 'Version',
'issueListing.culpritInfo':
'Layers of the execution stack responsible for the issue. If all are false, the issue is considered invalid.',
'issueListing.description': 'List of issues from builds and tests',
'issueListing.title': 'Issue Listing ― KCI Dashboard',
'issueListing.treeBranchTooltip':
Expand Down

0 comments on commit c46d8de

Please sign in to comment.