-
Notifications
You must be signed in to change notification settings - Fork 183
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
Fixed spelling and click display errors in sidebar #7939
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -27,9 +27,9 @@ | |||||||||||||
<div id="left-offcanvas-menu" class="left-offcanvas@(leftOffCanvasClass)"> | ||||||||||||||
<div class="left-offcanvas-menu-content" id="left-offcanvas-menu-content"> | ||||||||||||||
<div class="btn-group-vertical" role="group" aria-label="Vertical button group"> | ||||||||||||||
<a type="button" class="btn btn-lg btn-link mb-2" data-bs-toggle="tooltip" data-bs-placement="right" title="API" active-if="@TempData["page"].Equals("api")"><i class="bi bi-braces"></i></a> | ||||||||||||||
<a type="button" class="btn btn-lg btn-link mb-2" data-bs-toggle="offcanvas" data-bs-target="#apiRevisions-context" aria-controls="apiRevisions-context"><i class="bi bi-clock-history" data-bs-toggle="tooltip" data-bs-placement="right" title="Revisons"></i></a> | ||||||||||||||
<a type="button" class="btn btn-lg btn-link mb-2" asp-page="Conversation" asp-route-id="@Model.ReviewContent.Review.Id"><i class="bi bi-chat-left-dots" data-bs-toggle="tooltip" data-bs-placement="right" title="Conversiations"></i> | ||||||||||||||
<a type="button" class="btn btn-lg btn-link mb-2" data-bs-toggle="tooltip" data-bs-placement="right" title="Conversations" active-if="@TempData["page"].Equals("api")"><i class="bi bi-braces"></i></a> | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one should remain as You need to change them in other pages. Revision spelling at azure-sdk-tools/src/dotnet/APIView/APIViewWeb/Pages/Assemblies/Conversation.cshtml Line 25 in 1990a3f
API -> Conversation at azure-sdk-tools/src/dotnet/APIView/APIViewWeb/Pages/Assemblies/Conversation.cshtml Line 26 in 1990a3f
Revision spelling at
Conversation spelling at
Revision spelling at
Conversation spelling at
🙃Seems English language is not my strong suit. |
||||||||||||||
<a type="button" class="btn btn-lg btn-link mb-2" data-bs-toggle="offcanvas" data-bs-target="#apiRevisions-context" aria-controls="apiRevisions-context"><i class="bi bi-clock-history" data-bs-toggle="tooltip" data-bs-placement="right" title="Revisions"></i></a> | ||||||||||||||
<a type="button" class="btn btn-lg btn-link mb-2" asp-page="Conversation" asp-route-id="@Model.ReviewContent.Review.Id"><i class="bi bi-chat-left-dots" data-bs-toggle="tooltip" data-bs-placement="right" title="Conversations"></i> | ||||||||||||||
@if (Model.ReviewContent.ActiveConversationsInActiveAPIRevision > 0) | ||||||||||||||
{ | ||||||||||||||
var count = (Model.ReviewContent.ActiveConversationsInActiveAPIRevision > 10) ? "9+" : $"{Model.ReviewContent.ActiveConversationsInActiveAPIRevision}"; | ||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you undo this changes?