diff --git a/src/app/(loading-group)/[organizationSlug]/projects/[projectSlug]/assets/[assetSlug]/refs/[assetVersionSlug]/dependency-risks/page.tsx b/src/app/(loading-group)/[organizationSlug]/projects/[projectSlug]/assets/[assetSlug]/refs/[assetVersionSlug]/dependency-risks/page.tsx index bc0a5b6d..9f55e413 100644 --- a/src/app/(loading-group)/[organizationSlug]/projects/[projectSlug]/assets/[assetSlug]/refs/[assetVersionSlug]/dependency-risks/page.tsx +++ b/src/app/(loading-group)/[organizationSlug]/projects/[projectSlug]/assets/[assetSlug]/refs/[assetVersionSlug]/dependency-risks/page.tsx @@ -353,7 +353,7 @@ const Index: FunctionComponent = () => { - + diff --git a/src/components/common/SortingCaret.tsx b/src/components/common/SortingCaret.tsx index dec12e81..5f9940bc 100644 --- a/src/components/common/SortingCaret.tsx +++ b/src/components/common/SortingCaret.tsx @@ -1,4 +1,10 @@ -import { ChevronUpIcon } from "@heroicons/react/24/outline"; +import { + ChevronUpIcon, + ArrowsUpDownIcon, + ArrowUpIcon, + ArrowDownIcon, +} from "@heroicons/react/24/outline"; +import { Arrow } from "@radix-ui/react-tooltip"; import React, { FunctionComponent } from "react"; interface Props { @@ -8,11 +14,11 @@ interface Props { const SortingCaret: FunctionComponent = ({ sortDirection }) => { switch (sortDirection) { case false: - return null; + return ; case "asc": - return ; + return ; case "desc": - return ; + return ; } };