diff options
-rw-r--r-- | frontend/src/Router/index.tsx | 3 | ||||
-rw-r--r-- | frontend/src/pages/Settings/General/index.tsx | 16 |
2 files changed, 12 insertions, 7 deletions
diff --git a/frontend/src/Router/index.tsx b/frontend/src/Router/index.tsx index 2d94c7785..b47e823da 100644 --- a/frontend/src/Router/index.tsx +++ b/frontend/src/Router/index.tsx @@ -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: [ diff --git a/frontend/src/pages/Settings/General/index.tsx b/frontend/src/pages/Settings/General/index.tsx index b5ec38dec..86b271834 100644 --- a/frontend/src/pages/Settings/General/index.tsx +++ b/frontend/src/pages/Settings/General/index.tsx @@ -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"> |