chore(web): Sabnzbd -> SABnzbd (#895)

* Update DownloadClientForms.tsx

* Update constants.ts
This commit is contained in:
Kyle Sanderson 2023-05-01 05:17:26 -07:00 committed by GitHub
parent 82a117c12b
commit 61439567d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -278,8 +278,8 @@ export const DownloadClientTypeOptions: RadioFieldsetOption[] = [
value: "READARR"
},
{
label: "Sabnzbd",
description: "Add nzbs directly to Sabnzbd",
label: "SABnzbd",
description: "Add nzbs directly to SABnzbd",
value: "SABNZBD",
type: "nzb"
}
@ -297,7 +297,7 @@ export const DownloadClientTypeNameMap: Record<DownloadClientType | string, stri
"LIDARR": "Lidarr",
"WHISPARR": "Whisparr",
"READARR": "Readarr",
"SABNZBD": "Sabnzbd"
"SABNZBD": "SABnzbd"
};
export const ActionTypeOptions: RadioFieldsetOption[] = [
@ -316,7 +316,7 @@ export const ActionTypeOptions: RadioFieldsetOption[] = [
{ label: "Lidarr", description: "Send to Lidarr and let it decide", value: "LIDARR" },
{ label: "Whisparr", description: "Send to Whisparr and let it decide", value: "WHISPARR" },
{ label: "Readarr", description: "Send to Readarr and let it decide", value: "READARR" },
{ label: "Sabnzbd", description: "Add to Sabnzbd", value: "SABNZBD" }
{ label: "SABnzbd", description: "Add to SABnzbd", value: "SABNZBD" }
];
export const ActionTypeNameMap = {
@ -335,7 +335,7 @@ export const ActionTypeNameMap = {
"LIDARR": "Lidarr",
"WHISPARR": "Whisparr",
"READARR": "Readarr",
"SABNZBD": "Sabnzbd"
"SABNZBD": "SABnzbd"
};
export const ActionContentLayoutOptions: SelectGenericOption<ActionContentLayout>[] = [
@ -515,4 +515,4 @@ export const tagsMatchLogicOptions: OptionBasic[] = [
label: "all",
value: "ALL"
}
];
];

View file

@ -264,7 +264,7 @@ function FormFieldsSabnzbd() {
<NumberFieldWide
name="port"
label="Port"
help="port for Sabnzbd"
help="port for SABnzbd"
/>
)}