Skip to content

Commit

Permalink
Done
Browse files Browse the repository at this point in the history
  • Loading branch information
Webreaper committed Mar 7, 2024
1 parent 8c7217b commit 38dfb63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions Damselfly.Web.Client/Shared/PersonTile.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,16 @@
<div class="damselfly-persontile">
<div title="@Person.PersonGuid" class="damselfly-personimg">
<NavLink href="@PersonLink">
<img @key="@Person.PersonId" title="@Person.Name" src="@FaceLink">
<img @key="@Person.PersonId" title="@PersonTitle" src="@FaceLink">
</NavLink>
</div>
<div class="damselfly-personfield">
Face Data Sets: @Person.FaceData.Count
</div>
<div class="damselfly-personfield">
<MudTextField @key="@Person.PersonId" @bind-Value="@Name" ReadOnly="false" Variant="UIConstants.MudVariant"/>
</div>
</div>

@code {
private string PersonTitle => $"{Person.Name}\nState: {Person.State}\nFace Data Sets: {Person.FaceData.Count}";

[Parameter]
public Person Person { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion Damselfly.Web.Client/wwwroot/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const CACHE_VERSION='4.1.0-20240307231606'
const CACHE_VERSION='4.1.0-20240307232245'

0 comments on commit 38dfb63

Please sign in to comment.