Loading...
;;
}
-}
\ No newline at end of file
+};
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/IListDetails.ts b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/IListDetails.ts
index 75b74f657..e1c4f368f 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/IListDetails.ts
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/IListDetails.ts
@@ -24,21 +24,21 @@ export interface IListDetails {
updatedDate: string;
viewUrl: string;
viewUrlMirrors: string[];
-}
+};
export interface IListLicense {
descriptionUrl: string;
name: string;
-}
+};
export interface IListSyntax {
definitionUrl: string;
name: string;
supportedSoftware: ISyntaxSupportedSoftware[];
-}
+};
export interface ISyntaxSupportedSoftware {
homeUrl: string;
id: number;
name: string;
-}
\ No newline at end of file
+};
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/LinkButtonGroup.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/LinkButtonGroup.tsx
index e165073d5..528d21029 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/LinkButtonGroup.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/LinkButtonGroup.tsx
@@ -24,19 +24,18 @@ interface IProps {
submissionUrl: string;
viewUrl: string;
viewUrlMirrors: string[];
-}
+};
-export const LinkButtonGroup = (props: IProps) => {
- return
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/maintainersInfoCard/MaintainersInfoCard.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/maintainersInfoCard/MaintainersInfoCard.tsx
index 60aa4361f..cb95cbcf9 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/maintainersInfoCard/MaintainersInfoCard.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/maintainersInfoCard/MaintainersInfoCard.tsx
@@ -4,7 +4,7 @@ import { MaintainerInfoCard } from "./MaintainerInfoCard";
interface IProps {
maintainers: IMaintainer[];
-}
+};
export const MaintainersInfoCard = (props: IProps) =>
props.maintainers && props.maintainers.length > 0
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/ChatButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/ChatButton.tsx
index 116ce930d..f04b23e12 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/ChatButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/ChatButton.tsx
@@ -4,12 +4,11 @@ import { LinkButton } from "./LinkButton";
interface IProps {
name: string;
url: string;
-}
+};
-export const ChatButton = (props: IProps) => {
- return props.url
- ?
- : null;
-};;
\ No newline at end of file
+export const ChatButton = (props: IProps) =>
+ props.url
+ ?
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/DonateButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/DonateButton.tsx
index fb995e452..ce3bbcd93 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/DonateButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/DonateButton.tsx
@@ -4,12 +4,11 @@ import { LinkButton } from "./LinkButton";
interface IProps {
name: string;
url: string;
-}
+};
-export const DonateButton = (props: IProps) => {
- return props.url
- ?
- : null;
-};
\ No newline at end of file
+export const DonateButton = (props: IProps) =>
+ props.url
+ ?
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/EmailButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/EmailButton.tsx
index 9d39af39f..edc8e9972 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/EmailButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/EmailButton.tsx
@@ -4,12 +4,11 @@ import { LinkButton } from "./LinkButton";
interface IProps {
name: string;
emailAddress: string;
-}
+};
-export const EmailButton = (props: IProps) => {
- return props.emailAddress
- ?
- : null;
-};
\ No newline at end of file
+export const EmailButton = (props: IProps) =>
+ props.emailAddress
+ ?
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/ForumButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/ForumButton.tsx
index 1d728b5a1..0bf0bacfc 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/ForumButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/ForumButton.tsx
@@ -4,12 +4,11 @@ import { LinkButton } from "./LinkButton";
interface IProps {
name: string;
url: string;
-}
+};
-export const ForumButton = (props: IProps) => {
- return props.url
- ?
- : null;
-};
\ No newline at end of file
+export const ForumButton = (props: IProps) =>
+ props.url
+ ?
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/HomeButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/HomeButton.tsx
index 96d3dfffa..e1f40b366 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/HomeButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/HomeButton.tsx
@@ -4,12 +4,11 @@ import { LinkButton } from "./LinkButton";
interface IProps {
name: string;
url: string;
-}
+};
-export const HomeButton = (props: IProps) => {
- return props.url
- ?
- : null;
-};
\ No newline at end of file
+export const HomeButton = (props: IProps) =>
+ props.url
+ ?
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/IssuesButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/IssuesButton.tsx
index ffa996b90..038ab763f 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/IssuesButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/IssuesButton.tsx
@@ -4,12 +4,11 @@ import { LinkButton } from "./LinkButton";
interface IProps {
name: string;
url: string;
-}
+};
-export const IssuesButton = (props: IProps) => {
- return props.url
- ?
- : null;
-};
\ No newline at end of file
+export const IssuesButton = (props: IProps) =>
+ props.url
+ ?
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/LinkButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/LinkButton.tsx
index 0212e8d74..66af40654 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/LinkButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/LinkButton.tsx
@@ -6,14 +6,13 @@ interface IProps {
title?: string;
buttonClass?: string;
text: string;
-}
+};
-export const LinkButton = (props: IProps) => {
- return props.href
- ?
- {props.text}
-
- : null;
-};
\ No newline at end of file
+export const LinkButton = (props: IProps) =>
+ props.href
+ ?
+ {props.text}
+
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/PolicyButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/PolicyButton.tsx
index 5ad5118ab..60b87d795 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/PolicyButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/PolicyButton.tsx
@@ -4,12 +4,11 @@ import { LinkButton } from "./LinkButton";
interface IProps {
name: string;
url: string;
-}
+};
-export const PolicyButton = (props: IProps) => {
- return props.url
- ?
- : null;
-};
\ No newline at end of file
+export const PolicyButton = (props: IProps) =>
+ props.url
+ ?
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubmitButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubmitButton.tsx
index a5506bf9b..e4baef971 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubmitButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubmitButton.tsx
@@ -4,12 +4,11 @@ import { LinkButton } from "./LinkButton";
interface IProps {
name: string;
url: string;
-}
+};
-export const SubmitButton = (props: IProps) => {
- return props.url
- ?
- : null;
-};
\ No newline at end of file
+export const SubmitButton = (props: IProps) =>
+ props.url
+ ?
+ : null;
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubscribeButton.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubscribeButton.tsx
index 8358e0c86..515946b9f 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubscribeButton.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubscribeButton.tsx
@@ -5,7 +5,7 @@ interface IProps {
name: string;
url: string;
text?: string;
-}
+};
export const SubscribeButton = (props: IProps) => {
let buttonClass: string | undefined;
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubscribeButtonGroup.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubscribeButtonGroup.tsx
index 15edd9c0a..e6315284c 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubscribeButtonGroup.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/linkButtons/SubscribeButtonGroup.tsx
@@ -5,21 +5,21 @@ interface IProps {
name: string;
url: string;
urlMirrors?: string[];
-}
-
-export const SubscribeButtonGroup = (props: IProps) => {
- return props.url
- ? (props.urlMirrors && props.urlMirrors.length > 0)
- ?
- :
- : null;
};
+export const SubscribeButtonGroup = (props: IProps) =>
+ props.url
+ ? (props.urlMirrors && props.urlMirrors.length > 0)
+ ?
+ :
+ : null;
+
interface ISubscribeButtonGroupDropdownProps {
name: string;
url: string;
urlMirrors: string[];
-}
+};
const SubscribeButtonGroupDropdown = (props: ISubscribeButtonGroupDropdownProps) => {
let firstButtonText: string = "Original";
@@ -41,13 +41,12 @@ const SubscribeButtonGroupDropdown = (props: ISubscribeButtonGroupDropdownProps)
;
};
-const BtnGroupDropSubscribe = () => {
- return