Skip to content

Commit

Permalink
add sort to analysis
Browse files Browse the repository at this point in the history
Signed-off-by: HadasahR <d025834828@gmail.com>
  • Loading branch information
HadasahR committed Sep 22, 2024
1 parent 11a2a98 commit c142659
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export const ApplicationsTable: React.FC = () => {
sort: "sessionStorage",
},
isLoading: isFetchingApplications,
sortableColumns: ["name", "businessService", "tags", "effort"],
sortableColumns: ["name", "businessService", "tags", "effort","analysis"],
initialSort: { columnKey: "name", direction: "asc" },
initialColumns: {
name: { isIdentity: true },
Expand All @@ -348,6 +348,7 @@ export const ApplicationsTable: React.FC = () => {
businessService: app.businessService?.name || "",
tags: app.tags?.length || 0,
effort: app.effort || 0,
analysis:app.tasks.currentAnalyzer?.state || ""
}),
filterCategories: [
{
Expand Down

0 comments on commit c142659

Please sign in to comment.