diff --git a/src/routes/Settings/Settings.js b/src/routes/Settings/Settings.js
index 9f13f9ade..fbaf32afc 100644
--- a/src/routes/Settings/Settings.js
+++ b/src/routes/Settings/Settings.js
@@ -182,7 +182,12 @@ const Settings = () => {
{ t('SETTINGS_NAV_SHORTCUTS') }
- App Version: {process.env.VERSION}
+
+ App Version: {process.env.VERSION}
+
+
+ Build Version: {process.env.COMMIT_HASH}
+
{
streamingServer.settings !== null && streamingServer.settings.type === 'Ready' ?
Server Version: {streamingServer.settings.content.serverVersion}
@@ -733,6 +738,18 @@ const Settings = () => {
+
+
+
+
+ {process.env.COMMIT_HASH}
+
+
+
{
streamingServer.settings !== null && streamingServer.settings.type === 'Ready' ?
diff --git a/src/routes/Settings/styles.less b/src/routes/Settings/styles.less
index de37d17c2..072dd32a3 100644
--- a/src/routes/Settings/styles.less
+++ b/src/routes/Settings/styles.less
@@ -64,8 +64,11 @@
.version-info-label {
flex: 0 1 auto;
margin: 0.5rem 0;
+ white-space: nowrap;
+ text-overflow: ellipsis;
color: var(--primary-foreground-color);
opacity: 0.3;
+ overflow: hidden;
}
}
@@ -242,6 +245,8 @@
flex-shrink: 1;
flex-basis: auto;
line-height: 1.5rem;
+ white-space: nowrap;
+ text-overflow: ellipsis;
color: var(--primary-foreground-color);
}