Skip to content

Commit

Permalink
Reduced commit hash string in ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Masu-Baumgartner committed Jun 30, 2024
1 parent 20b67ea commit 1cca945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Moonlight/Core/UI/Views/Admin/Sys/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</div>
<div class="col-md-3 col-12">
@{
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)
}

<StatCard Value="@commitText" Description="Commit" Icon="bxl-git"/>
Expand Down

0 comments on commit 1cca945

Please sign in to comment.