Skip to content

Commit aa633f4

Browse files
David-DB88Haarolean
andcommitted
FE: Fix latest version is null (#3833)
Co-authored-by: Roman Zabaluev <[email protected]> (cherry picked from commit f22c910)
1 parent f7aaea8 commit aa633f4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

kafka-ui-react-app/src/components/Version/Version.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ const Version: React.FC = () => {
2121
<S.Wrapper>
2222
{!isLatestRelease && (
2323
<S.OutdatedWarning
24-
title={`Your app version is outdated. Current latest version is ${versionTag}`}
24+
title={`Your app version is outdated. Latest version is ${
25+
versionTag || 'UNKNOWN'
26+
}`}
2527
>
2628
<WarningIcon />
2729
</S.OutdatedWarning>

0 commit comments

Comments
 (0)