-
Notifications
You must be signed in to change notification settings - Fork 17
Release/1.2.2 into Dev #519
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
Changes from all commits
23a7823
8f3492f
b34b1b7
4f988bc
6be4f45
0f70f3f
e86e784
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -58,9 +58,12 @@ <h2 class="sidebar-title">INSTALLED</h2> | |||||
| <input type="text" id="tools-search-input" class="search-input" placeholder="Search installed tools..." /> | ||||||
| <button type="button" class="search-clear-btn" data-clear-target="tools-search-input" aria-label="Clear installed tools search" title="Clear search">×</button> | ||||||
| </div> | ||||||
| <button class="search-filter-btn" id="tools-filter-btn" title="Filters and Sort"> | ||||||
| <img width="16" height="16" alt="Filter Icon" /> | ||||||
| </button> | ||||||
| <div class="filter-btn-group"> | ||||||
| <button type="button" class="search-filter-btn" id="tools-filter-btn" aria-label="Open filters and sort" title="Filters and Sort"> | ||||||
| <img width="16" height="16" alt="" aria-hidden="true" /> | ||||||
| </button> | ||||||
| <button type="button" class="search-filter-btn filter-clear-btn" id="tools-filter-clear-btn" aria-label="Clear active filters" title="Clear active filters" style="display: none">×</button> | ||||||
| </div> | ||||||
| </div> | ||||||
| <div class="filter-dropdown" id="tools-filter-dropdown" style="display: none"> | ||||||
| <div class="filter-section"> | ||||||
|
|
@@ -115,9 +118,12 @@ <h2 class="sidebar-title">CONNECTIONS</h2> | |||||
| <input type="text" id="connections-search-input" class="search-input" placeholder="Search connections..." /> | ||||||
| <button type="button" class="search-clear-btn" data-clear-target="connections-search-input" aria-label="Clear connections search" title="Clear search">×</button> | ||||||
| </div> | ||||||
| <button class="search-filter-btn" id="connections-filter-btn" title="Filters and Sort"> | ||||||
| <img width="16" height="16" alt="Filter Icon" /> | ||||||
| </button> | ||||||
| <div class="filter-btn-group"> | ||||||
| <button class="search-filter-btn" id="connections-filter-btn" title="Filters and Sort" aria-label="Open filters and sort"> | ||||||
| <img width="16" height="16" alt="" aria-hidden="true" /> | ||||||
| </button> | ||||||
| <button type="button" class="search-filter-btn filter-clear-btn" id="connections-filter-clear-btn" aria-label="Clear active filters" title="Clear active filters" style="display: none">×</button> | ||||||
| </div> | ||||||
| </div> | ||||||
| <div class="filter-dropdown" id="connections-filter-dropdown" style="display: none"> | ||||||
| <div class="filter-section"> | ||||||
|
|
@@ -175,9 +181,12 @@ <h2 class="sidebar-title">MARKETPLACE</h2> | |||||
| <input type="text" id="marketplace-search-input" class="search-input" placeholder="Search tools..." /> | ||||||
| <button type="button" class="search-clear-btn" data-clear-target="marketplace-search-input" aria-label="Clear marketplace search" title="Clear search">×</button> | ||||||
| </div> | ||||||
| <button class="search-filter-btn" id="marketplace-filter-btn" title="Filters and Sort"> | ||||||
| <img width="16" height="16" alt="Filter Icon" /> | ||||||
| </button> | ||||||
| <div class="filter-btn-group"> | ||||||
| <button class="search-filter-btn" id="marketplace-filter-btn" aria-label="Open marketplace filters and sort options" title="Filters and Sort"> | ||||||
|
||||||
| <button class="search-filter-btn" id="marketplace-filter-btn" aria-label="Open marketplace filters and sort options" title="Filters and Sort"> | |
| <button type="button" class="search-filter-btn" id="marketplace-filter-btn" aria-label="Open marketplace filters and sort options" title="Filters and Sort"> |
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.
The
connections-filter-btnbutton is missingtype="button". While it currently isn’t inside a<form>, the default button type issubmit, which can cause accidental form submissions if the markup is refactored later. Add an explicittype="button"for consistency with the other filter buttons.