Skip to content

Commit

Permalink
Merge branch 'develop' into fix-språk-dynamicproperties
Browse files Browse the repository at this point in the history
  • Loading branch information
steinho authored Aug 20, 2024
2 parents 3b0bd29 + 8bad4e5 commit 30fab19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@model SpeciesAssessment2021
@if (!string.IsNullOrWhiteSpace(Model.RevisionReason))
@if (!string.IsNullOrEmpty(Model.RevisionReason.StripHtml()))
{
<div>
<span class="material-icons" style="float:left;display:inline-block; padding:10px;">
Expand All @@ -10,7 +10,7 @@
<i style="display:none;">NB - Vurderingen er justert etter publisering: </i>
<b>Justeringer etter publisering</b>
<p>
@Model.RevisionReason
@Html.Raw(Model.RevisionReason)
<a is-visible="Model.Revisions.Any()" asp-action="Detail" asp-route-id="@Model.Id" asp-route-revisionid="1">Gå til første utgave</a>
</p>
</div>
Expand Down

0 comments on commit 30fab19

Please sign in to comment.