From 1cca9457ee21f19f65ee22cdf13f5b6179a38485 Mon Sep 17 00:00:00 2001 From: Marcel Baumgartner Date: Sun, 30 Jun 2024 02:35:35 +0200 Subject: [PATCH] Reduced commit hash string in ui --- Moonlight/Core/UI/Views/Admin/Sys/Index.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moonlight/Core/UI/Views/Admin/Sys/Index.razor b/Moonlight/Core/UI/Views/Admin/Sys/Index.razor index ea40262c..2b93873b 100644 --- a/Moonlight/Core/UI/Views/Admin/Sys/Index.razor +++ b/Moonlight/Core/UI/Views/Admin/Sys/Index.razor @@ -48,7 +48,7 @@
@{ - var commitText = $"{MoonlightService.BuildCommitHash}"; // TODO: Add update check (possible during startup, with error handling etc) + var commitText = $"{MoonlightService.BuildCommitHash.Substring(0, 6)}"; // TODO: Add update check (possible during startup, with error handling etc) }