diff --git a/src/FilterLists.Web/ClientApp/components/Home.tsx b/src/FilterLists.Web/ClientApp/components/Home.tsx index 179a33474..197c5112c 100644 --- a/src/FilterLists.Web/ClientApp/components/Home.tsx +++ b/src/FilterLists.Web/ClientApp/components/Home.tsx @@ -34,27 +34,24 @@ export class Home extends React.Component, IFilterListsS return row[filter.id].toUpperCase().startsWith(filter.value.toUpperCase()) }, { Header: "Details", - accessor: "id", - Cell: (d: any) => , + sortable: false, + Cell: (rowInfo: any) => , style: { textAlign: "center" }, width: 100 }, { Header: "Subscribe", - accessor: "viewUrl", - Cell: (d: any) => Subscribe, diff --git a/src/FilterLists.Web/ClientApp/components/ListDetailsModal.tsx b/src/FilterLists.Web/ClientApp/components/ListDetailsModal.tsx index 0bf599192..277095658 100644 --- a/src/FilterLists.Web/ClientApp/components/ListDetailsModal.tsx +++ b/src/FilterLists.Web/ClientApp/components/ListDetailsModal.tsx @@ -68,9 +68,7 @@ function Name(props: any) { function Description(props: any) { if (props.description) { if (props.url) { - return

-

{props.description}
-

; + return
{props.description}
; } else { return

{props.description}

; }