diff options
author | morpheus65535 <[email protected]> | 2024-02-13 22:18:04 -0500 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2024-02-13 22:18:04 -0500 |
commit | ebd0b21c6da0c93756b375806311382bcd33bfd0 (patch) | |
tree | 088ccca5b7edf9cb3a6942d5a014dfb6a4e95e3c /frontend/src/pages/Settings/General | |
parent | faa4dfb77c6e19c2d6e470b3f58fed76a3878a54 (diff) | |
download | bazarr-ebd0b21c6da0c93756b375806311382bcd33bfd0.tar.gz bazarr-ebd0b21c6da0c93756b375806311382bcd33bfd0.zip |
no log: additional fixesv1.4.2-beta.5
Diffstat (limited to 'frontend/src/pages/Settings/General')
-rw-r--r-- | frontend/src/pages/Settings/General/index.tsx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/frontend/src/pages/Settings/General/index.tsx b/frontend/src/pages/Settings/General/index.tsx index 6af0151d5..96336a250 100644 --- a/frontend/src/pages/Settings/General/index.tsx +++ b/frontend/src/pages/Settings/General/index.tsx @@ -70,9 +70,6 @@ const SettingsGeneralView: FunctionComponent = () => { options={securityOptions} placeholder="No Authentication" settingKey="settings-auth-type" - settingOptions={{ - onSubmit: (v) => (v === null ? "None" : v), - }} ></Selector> <CollapseBox settingKey="settings-auth-type"> <Text label="Username" settingKey="settings-auth-username"></Text> @@ -138,9 +135,6 @@ const SettingsGeneralView: FunctionComponent = () => { settingKey="settings-proxy-type" placeholder="No Proxy" options={proxyOptions} - settingOptions={{ - onSubmit: (v) => (v === null ? "None" : v), - }} ></Selector> <CollapseBox settingKey="settings-proxy-type" |