mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-20 21:17:02 +00:00
Fix #1770
This commit is contained in:
parent
4c7c240820
commit
e5c21bee45
2 changed files with 12 additions and 7 deletions
|
@ -31,6 +31,7 @@ import WantedSeriesView from "@/pages/Wanted/Series";
|
|||
import { Environment } from "@/utilities";
|
||||
import {
|
||||
faClock,
|
||||
faCogs,
|
||||
faExclamationTriangle,
|
||||
faFileExcel,
|
||||
faFilm,
|
||||
|
@ -181,7 +182,7 @@ function useRoutes(): CustomRouteObject[] {
|
|||
],
|
||||
},
|
||||
{
|
||||
icon: faExclamationTriangle,
|
||||
icon: faCogs,
|
||||
name: "Settings",
|
||||
path: "settings",
|
||||
children: [
|
||||
|
|
|
@ -188,12 +188,16 @@ const SettingsGeneralView: FunctionComponent = () => {
|
|||
<File settingKey="settings-backup-folder" type="bazarr"></File>
|
||||
<Message>Absolute path to the backup directory</Message>
|
||||
</Input>
|
||||
|
||||
<Input name="Retention (days)">
|
||||
<Text
|
||||
settingKey="settings-backup-retention"
|
||||
numberWithArrows={true}
|
||||
></Text>
|
||||
<Input name="Retention">
|
||||
<InputGroup>
|
||||
<Text
|
||||
settingKey="settings-backup-retention"
|
||||
numberWithArrows={true}
|
||||
></Text>
|
||||
<InputGroup.Prepend>
|
||||
<InputGroup.Text>Days</InputGroup.Text>
|
||||
</InputGroup.Prepend>
|
||||
</InputGroup>
|
||||
</Input>
|
||||
</Group>
|
||||
<Group header="Analytics">
|
||||
|
|
Loading…
Reference in a new issue