serverInfo.host + serverInfo.port} />
@@ -83,7 +84,7 @@ export const LdapErrorBox = ({ ldapConnectionInfo }: LdapConnectionErrorProps) =
const errorElements = connectionErrors.map((info, index) => (
- {info.host}:{info.port}
+ {`${info.host}:${info.port}`}
{info.error}
diff --git a/public/app/features/admin/ldap/LdapPage.tsx b/public/app/features/admin/ldap/LdapPage.tsx
index d7eaade9b1a..7f8a2ee5f63 100644
--- a/public/app/features/admin/ldap/LdapPage.tsx
+++ b/public/app/features/admin/ldap/LdapPage.tsx
@@ -7,6 +7,7 @@ import { featureEnabled } from '@grafana/runtime';
import { Alert, Button, Field, Input, Stack } from '@grafana/ui';
import { Page } from 'app/core/components/Page/Page';
import { contextSrv } from 'app/core/core';
+import { Trans } from 'app/core/internationalization';
import { GrafanaRouteComponentProps } from 'app/core/navigation/types';
import {
AppNotificationSeverity,
@@ -118,7 +119,9 @@ export const LdapPage = ({
{canReadLDAPUser && (
- Test user mapping
+
+ Test user mapping
+