Skip to content

Commit 702bfb3

Browse files
authored
Merge pull request #2464 from RedisInsight/fe/bugfix/RI-4848
#RI-4848 - fix link
2 parents b5be220 + 8fd46c9 commit 702bfb3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

redisinsight/ui/src/pages/home/components/WelcomeComponent/WelcomeComponent.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,15 @@ const Welcome = ({ onAddInstance }: Props) => {
160160
handleClickLink(HELP_LINKS.cloud.event, { source: OAuthSocialSource.WelcomeScreen })
161161
ssoCloudHandlerClick(e, OAuthSocialSource.WelcomeScreen)
162162
}}
163+
target="_blank"
163164
style={{
164165
...linkStyles,
165166
backgroundImage: linkStyles?.backgroundImage
166167
? `url(${getPathToResource(linkStyles.backgroundImage)})`
167168
: undefined
168169
}}
169170
data-testid="promo-btn"
171+
rel="noreferrer"
170172
>
171173
<EuiIcon className={styles.btnIcon} type={CloudStars} />
172174
<div className={styles.btnContent}>

redisinsight/ui/src/pages/home/components/WelcomeComponent/styles.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@
9494
}
9595
}
9696

97-
.promoButton {
97+
.btn.promoButton {
9898
min-height: 80px;
9999

100-
color: var(--htmlColor);
100+
color: var(--htmlColor) !important;
101101
}
102102

103103
.logo {

0 commit comments

Comments
 (0)