diff --git a/client/src/app/pages/issues/issues-table.tsx b/client/src/app/pages/issues/issues-table.tsx index fade7de7e9..1b9f685a41 100644 --- a/client/src/app/pages/issues/issues-table.tsx +++ b/client/src/app/pages/issues/issues-table.tsx @@ -99,8 +99,7 @@ export const IssuesTable: React.FC = ({ mode }) => { const tableControlState = useTableControlUrlParams({ urlParamKeyPrefix: TableURLParamKeyPrefix.issues, columnNames: { - name: "Issue", - description: "Description", + description: "Issue", category: "Category", source: "Source", target: "Target(s)", @@ -108,8 +107,8 @@ export const IssuesTable: React.FC = ({ mode }) => { affected: mode === "singleApp" ? "Affected files" : "Affected applications", }, - sortableColumns: ["name", "category", "effort", "affected"], - initialSort: { columnKey: "name", direction: "asc" }, + sortableColumns: ["description", "category", "effort", "affected"], + initialSort: { columnKey: "description", direction: "asc" }, filterCategories: [ ...(mode === "allIssues" ? allIssuesSpecificFilterCategories : []), { @@ -171,7 +170,7 @@ export const IssuesTable: React.FC = ({ mode }) => { const hubRequestParams = getHubRequestParams({ ...tableControlState, // Includes filterState, sortState and paginationState hubSortFieldKeys: { - name: "name", + description: "description", category: "category", effort: "effort", affected: mode === "singleApp" ? "files" : "applications", @@ -309,7 +308,6 @@ export const IssuesTable: React.FC = ({ mode }) => { - @@ -354,20 +352,13 @@ export const IssuesTable: React.FC = ({ mode }) => { rowIndex={rowIndex} > - {report.name} - - {report.description.split("\n")[0]} - + {report.category}