Browse Source

Merge pull request #1081 from feitianbubu/fixTypoOidcEnabledField

fix: typo in oidc_enabled field (previously oidc)
IcedTangerine 7 months ago
parent
commit
a215538b4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/src/pages/Home/index.js

+ 1 - 1
web/src/pages/Home/index.js

@@ -158,7 +158,7 @@ const Home = () => {
                   </p>
                   <p>
                     {t('OIDC 身份验证')}:
-                    {statusState?.status?.oidc === true
+                    {statusState?.status?.oidc_enabled === true
                       ? t('已启用')
                       : t('未启用')}
                   </p>