aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/controls/IdentityProviderLink.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/controls/IdentityProviderLink.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/controls/IdentityProviderLink.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/IdentityProviderLink.tsx b/server/sonar-web/src/main/js/components/controls/IdentityProviderLink.tsx
index c6be4c1900c..b0c292abba1 100644
--- a/server/sonar-web/src/main/js/components/controls/IdentityProviderLink.tsx
+++ b/server/sonar-web/src/main/js/components/controls/IdentityProviderLink.tsx
@@ -42,7 +42,7 @@ export default function IdentityProviderLink({
name,
onClick,
small,
- url
+ url,
}: Props) {
const size = small ? 14 : 20;
@@ -55,7 +55,8 @@ export default function IdentityProviderLink({
)}
href={url}
onClick={onClick}
- style={{ backgroundColor }}>
+ style={{ backgroundColor }}
+ >
<img alt={name} height={size} src={getBaseUrl() + iconPath} width={size} />
{children}
</a>