Skip to content

Commit

Permalink
fix extra network filter by folder
Browse files Browse the repository at this point in the history
  • Loading branch information
vladmandic committed Jun 17, 2023
1 parent 8d80b5f commit a4ca27c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion javascript/extraNetworks.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function readCardDescription(event, tabname, filename, descript, extraPage, card
function extraNetworksSearchButton(tabs_id, event) {
searchTextarea = gradioApp().querySelector(`#${tabs_id} > div > textarea`);
button = event.target;
text = button.classList.contains('search-all') ? '' : button.textContent.trim();
text = button.classList.contains('search-all') ? '' : `/${button.textContent.trim()}/`;
searchTextarea.value = text;
updateInput(searchTextarea);
}
Expand Down
2 changes: 1 addition & 1 deletion wiki
Submodule wiki updated from 03b91b to 01aabc

0 comments on commit a4ca27c

Please sign in to comment.