Browse Source

fix: typo in oidc_enabled field (previously oidc)

skynono 8 months ago
parent
commit
e1190f98e9
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>