Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix label case in review dropdown #3814

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
</div>
*@
<div class="form-group col-md-6 mb-0">
<label class="mb-0 ml-1"><small>REVISION:</small></label>
<label class="mb-0 ml-1"><small>Revision:</small></label>
<select class="selectpicker show-tick show-menu-arrow shadow-sm" data-style="btn-light btn-sm border" data-selected-text-format="value" data-live-search="true" data-size="10" data-width="100%" data-container="body" id="revisions-bootstraps-select" data-tick-icon="fa-solid fa-check">
@foreach (var revision in Model.Review.Revisions.Reverse())
{
Expand Down Expand Up @@ -312,7 +312,7 @@
doc = @Model.ShowDocumentation,
diffOnly = @Model.ShowDiffOnly
});
<label class="mb-0 ml-1"><a href="@urlValue"><small>DIFF WITH:</small></a></label>
<label class="mb-0 ml-1"><a href="@urlValue"><small>Diff With:</small></a></label>
}
else
{
Expand All @@ -323,7 +323,7 @@
doc = @Model.ShowDocumentation,
diffOnly = @Model.ShowDiffOnly
});
<label class="mb-0 ml-1"><a href="@urlValue"><small>DIFF:</small></a></label>
<label class="mb-0 ml-1"><a href="@urlValue"><small>Diff:</small></a></label>
}
<select class="selectpicker show-tick show-menu-arrow shadow-sm" data-style="btn-light btn-sm border border-left" data-size="10" data-width="100%" data-live-search="true" data-container="body" aria-label="Diff Review" id="diff-bootstraps-select" data-tick-icon="fa-solid fa-check">
if (@Model.DiffRevisionId == null)
Expand Down