diff --git a/interface/src/app/status/Version.tsx b/interface/src/app/status/Version.tsx
index d8fb7f2d2..0d27ec461 100644
--- a/interface/src/app/status/Version.tsx
+++ b/interface/src/app/status/Version.tsx
@@ -86,8 +86,9 @@ const VersionInfoDialog = memo(
showVersionInfo,
latestVersion,
latestDevVersion,
- previousVersion,
+ partitionVersion,
partition,
+ currentPartition,
size,
locale,
LL,
@@ -96,8 +97,9 @@ const VersionInfoDialog = memo(
showVersionInfo: number;
latestVersion?: VersionInfo;
latestDevVersion?: VersionInfo;
- previousVersion?: VersionInfo | undefined;
+ partitionVersion?: VersionInfo | undefined;
partition: string;
+ currentPartition: string;
size: number;
locale: string;
LL: TranslationFunctions;
@@ -107,13 +109,13 @@ const VersionInfoDialog = memo(
const isStable = showVersionInfo === 1;
const isDev = showVersionInfo === 2;
- const isPrevious = showVersionInfo === 3;
+ const isPartition = showVersionInfo === 3;
const version = isStable
? latestVersion
: isDev
? latestDevVersion
- : previousVersion;
+ : partitionVersion;
const relNotesUrl = isStable
? STABLE_RELNOTES_URL
: isDev
@@ -135,18 +137,17 @@ const VersionInfoDialog = memo(
borderBottom: 'none',
pr: 1,
py: 0.5,
- fontSize: 13,
- width: 140
+ fontSize: 13
}}
>
- {isPrevious ? LL.TYPE(0) : LL.RELEASE_TYPE()}
+ {LL.VERSION()}
- {isStable
- ? LL.STABLE()
- : isDev
- ? LL.DEVELOPMENT()
- : 'Partition ' + LL.VERSION()}
+ {isPartition
+ ? typeof version === 'string'
+ ? version
+ : version?.name
+ : version?.name}
@@ -158,20 +159,22 @@ const VersionInfoDialog = memo(
borderBottom: 'none',
pr: 1,
py: 0.5,
- fontSize: 13
+ fontSize: 13,
+ width: 140
}}
>
- {LL.VERSION()}
+ {isPartition ? LL.TYPE(0) : LL.RELEASE_TYPE()}
- {isPrevious
- ? typeof version === 'string'
- ? version
- : version?.name
- : version?.name}
+ {partition === currentPartition && LL.ACTIVE() + ' '}
+ {isStable
+ ? LL.STABLE()
+ : isDev
+ ? LL.DEVELOPMENT()
+ : 'Partition ' + LL.VERSION()}
- {isPrevious && (
+ {isPartition && (
)}
- {isPrevious && (
+ {isPartition && (
- {isPrevious ? 'Install Date' : 'Build Date'}
+ {isPartition ? 'Install Date' : 'Build Date'}
{prettyDateTime(locale, new Date(version.published_at))}
@@ -235,7 +238,7 @@ const VersionInfoDialog = memo(
- {!isPrevious && (
+ {!isPartition && (