Skip to content

Commit

Permalink
Updated UI (#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz committed Jul 17, 2023
1 parent 0ef8e66 commit 4c27118
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/RepoGovernance.Web/Views/Home/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,13 @@
@if (item.RepoLanguages.Count > 0)
{
<div style="font-size:14px;">
<strong>Languages detected:</strong><br />
<strong>Languages detected:</strong>
@if (item.RepoLanguagesLastUpdated != null)
{
DateTime repoLanguagesDateTime = (DateTime)item.RepoLanguagesLastUpdated;
<i class="bi bi-info-circle" title='Repo langauges last updated on @repoLanguagesDateTime.ToString("d-MMM-yyyy hh:mm:sstt")'></i>
}
<br />
@foreach (RepoLanguage language in item.RepoLanguages)
{
if (language.Percent > 0.001M)
Expand Down

0 comments on commit 4c27118

Please sign in to comment.