Skip to content

Commit

Permalink
Use Fluent Anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
rbnswartz committed Jan 9, 2025
1 parent ee4edc9 commit f34e45d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion LintingResults/Components/Pages/ListScans.razor
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
<ul>
@foreach (var result in lintingResults)
{
<li><a href="/ScanDetails/@result.LintingResultDBModelId">@result.dateInserted</a></li>
<li>
<FluentAnchor Appearance="Appearance.Hypertext" Href="@("/ScanDetails/" + result.LintingResultDBModelId)">@result.dateInserted</FluentAnchor>
</li>
}
</ul>
}
Expand Down

0 comments on commit f34e45d

Please sign in to comment.