Skip to content

Commit

Permalink
Resolve Hidden Api Bugs (#5547)
Browse files Browse the repository at this point in the history
  • Loading branch information
chidozieononiwu authored Feb 23, 2023
1 parent 1987602 commit b0b5a8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dotnet/APIView/APIViewWeb/Pages/Assemblies/Review.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -371,11 +371,11 @@
<div class="form-check form-switch">
@if (userPreference.ShowHiddenApis == true)
{
<input class="form-check-input" type="checkbox" role="switch" id="show-hidden-api-checkbok">
<input class="form-check-input" type="checkbox" role="switch" id="show-hidden-api-checkbox" checked>
}
else
{
<input class="form-check-input" type="checkbox" role="switch" id="show-hidden-api-checkbok" checked>
<input class="form-check-input" type="checkbox" role="switch" id="show-hidden-api-checkbox">
}
<label class="form-check-label" for="show-hidden-api-checkbok">Show Hidden APIs</label>
</div>
Expand Down

0 comments on commit b0b5a8b

Please sign in to comment.