diff --git a/public/app/features/auth-config/AuthConfigPage.tsx b/public/app/features/auth-config/AuthConfigPage.tsx index bf6f13a4e48..1fa89e990bc 100644 --- a/public/app/features/auth-config/AuthConfigPage.tsx +++ b/public/app/features/auth-config/AuthConfigPage.tsx @@ -100,9 +100,9 @@ export const AuthConfigPageUnconnected = ({ ))} )} -
-

Settings

- {authSettings && ( + {!isEmpty(authSettings) && ( +
+

Settings

{Object.entries(authSettings).map(([sectionName, sectionSettings], i) => ( @@ -121,8 +121,8 @@ export const AuthConfigPageUnconnected = ({ ))}
- )} -
+
+ )} );