import { SelectorOption } from "@/components"; import { FunctionComponent, useMemo } from "react"; import { Check, CollapseBox, Layout, Message, Section, Selector, } from "../components"; import { backupOptions, dayOptions, diskUpdateOptions, episodesSyncOptions, moviesSyncOptions, seriesSyncOptions, upgradeOptions, } from "./options"; const SettingsSchedulerView: FunctionComponent = () => { const timeOptions = useMemo(() => { return Array(24) .fill(null) .map>((_, idx) => ({ label: `${idx}:00`, value: idx, })); }, []); return (
k === "Weekly"} > k === "Daily" || k === "Weekly"} > If disabled, Bazarr will use the embedded subtitles parser to index episodes file properties on each run. This will result in higher disk I/O. k === "Weekly"} > k === "Daily" || k === "Weekly"} > If disabled, Bazarr will use embedded subtitles parser to index movies file properties on each run. This will result in higher disk I/O.
k === "Weekly"} > k === "Daily" || k === "Weekly"} >
); }; export default SettingsSchedulerView;