Skip to content

Commit

Permalink
Added feature ID in braces to feature name for clarity (#10391)
Browse files Browse the repository at this point in the history
* Added feature id in braces to feature name for clarity

* Update TaxonomyTermFilter.cs

* Adding code formatting

---------

Co-authored-by: Zoltán Lehóczky <[email protected]>
  • Loading branch information
brunoAltinet and Piedone authored Jan 17, 2024
1 parent e8d4fb7 commit ddd1490
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@
{
<div class="form-check mb-1">
<input type="checkbox" class="form-check-input" name="featureIds" id="@featureId" value="@featureId">
<label class="form-check-label fw-semibold" for="@featureId">@featureName</label>
<label class="form-check-label fw-semibold" for="@featureId">@featureName (<code>@featureId</code>)</label>
</div>
}
else
{
<div class="fw-semibold mb-1">@featureName</div>
<div class="fw-semibold mb-1">@featureName (<code>@featureId</code>)</div>
}

<p class="text-muted mb-1">@feature.Descriptor.Description</p>
Expand Down

0 comments on commit ddd1490

Please sign in to comment.