Skip to content

Commit 2cda1f2

Browse files
authored
Merge pull request #2651 from RedisInsight/fe/bugfix/RI-5000_text_not_visible_in_light_theme
#RI-5000 - [FE] Popup message text not visible for the light theme
2 parents 07cdb82 + 2b587a2 commit 2cda1f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redisinsight/ui/src/components/notifications/components/infinite-messages/InfiniteMessages.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export const INFINITE_MESSAGES = {
182182
</div>
183183
)
184184
}),
185-
APP_UPDATE_AVAILABLE: (version: string, onSuccess: () => void) => ({
185+
APP_UPDATE_AVAILABLE: (version: string, onSuccess?: () => void) => ({
186186
id: InfiniteMessagesIds.appUpdateAvailable,
187187
Inner: (
188188
<div
@@ -196,7 +196,7 @@ export const INFINITE_MESSAGES = {
196196
New version is now available
197197
</span>
198198
</EuiTitle>
199-
<EuiText size="s" color="subdued">
199+
<EuiText size="s">
200200
<>
201201
With RedisInsight
202202
{` ${version} `}

0 commit comments

Comments
 (0)