mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
fix: admin oauth2 source customURLSettings never shown
Regression introduced by b95a893b22
This commit is contained in:
parent
52110aff44
commit
4e816e1326
1 changed files with 6 additions and 3 deletions
|
@ -75,14 +75,17 @@ export function initAdminCommon() {
|
|||
}
|
||||
showElem('.open_id_connect_auto_discovery_url');
|
||||
break;
|
||||
default:
|
||||
if (document.getElementById(`#${provider}_customURLSettings`)?.getAttribute('data-required')) {
|
||||
default: {
|
||||
const customURLSettings = document.getElementById(`${provider}_customURLSettings`);
|
||||
if (!customURLSettings) break;
|
||||
if (customURLSettings.getAttribute('data-required')) {
|
||||
document.getElementById('oauth2_use_custom_url')?.setAttribute('checked', 'checked');
|
||||
}
|
||||
if (document.getElementById(`#${provider}_customURLSettings`)?.getAttribute('data-available')) {
|
||||
if (customURLSettings.getAttribute('data-available')) {
|
||||
showElem('.oauth2_use_custom_url');
|
||||
}
|
||||
}
|
||||
}
|
||||
onOAuth2UseCustomURLChange(applyDefaultValues);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue