From 66aeb19d884e05a030a6d9c0108628b1b77fdb6e Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 20 Dec 2022 11:56:04 -0600 Subject: [PATCH] Handle auth options correctly in Security Settings (cherry picked from commit 0fad20e327503bac767c4df4c893f5e418866831) --- frontend/src/Settings/General/SecuritySettings.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/Settings/General/SecuritySettings.js b/frontend/src/Settings/General/SecuritySettings.js index be15bede2..de09e0ff9 100644 --- a/frontend/src/Settings/General/SecuritySettings.js +++ b/frontend/src/Settings/General/SecuritySettings.js @@ -16,6 +16,7 @@ export const authenticationRequiredWarning = 'To prevent remote access without a export const authenticationMethodOptions = [ { key: 'none', value: 'None', isDisabled: true }, + { key: 'external', value: 'External', isHidden: true }, { key: 'basic', value: 'Basic (Browser Popup, insecure over HTTP)' }, { key: 'forms', value: 'Forms (Login Page)' }, { key: 'plex', value: 'Plex' },