aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/pages/Settings/Providers/options.ts
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2024-01-10 23:07:42 -0500
committerGitHub <[email protected]>2024-01-10 23:07:42 -0500
commit0e648b5588c7d8675238b1ceb2e04a29e23d8fb1 (patch)
tree51349958a9620210fe3502254d3243526ca7bbb1 /frontend/src/pages/Settings/Providers/options.ts
parent0807bd99b956ee3abf18acc3bec43a87fc8b1530 (diff)
downloadbazarr-0e648b5588c7d8675238b1ceb2e04a29e23d8fb1.tar.gz
bazarr-0e648b5588c7d8675238b1ceb2e04a29e23d8fb1.zip
Improved subtitles synchronisation settings and added a manual sync modalv1.4.1-beta.14
Diffstat (limited to 'frontend/src/pages/Settings/Providers/options.ts')
-rw-r--r--frontend/src/pages/Settings/Providers/options.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/pages/Settings/Providers/options.ts b/frontend/src/pages/Settings/Providers/options.ts
new file mode 100644
index 000000000..63227ca76
--- /dev/null
+++ b/frontend/src/pages/Settings/Providers/options.ts
@@ -0,0 +1,12 @@
+import { SelectorOption } from "@/components";
+
+export const antiCaptchaOption: SelectorOption<string>[] = [
+ {
+ label: "Anti-Captcha",
+ value: "anti-captcha",
+ },
+ {
+ label: "Death by Captcha",
+ value: "death-by-captcha",
+ },
+];