diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/columns/Software.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/columns/Software.tsx index dfa1589da..865c81a40 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/columns/Software.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/columns/Software.tsx @@ -63,5 +63,9 @@ const sortMethod = (a: number, b: number, software: ISoftware[]) => { const Cell = (listSyntaxId: number, software: ISoftware[]) => listSyntaxId ? software.filter((s: ISoftware) => s.syntaxIds.indexOf(listSyntaxId) > -1) - .map((s: ISoftware, i: number) => ) + .map((s: ISoftware, i: number) => s.homeUrl + ? + + + : ) : null; \ No newline at end of file