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

View file

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