Skip to content

Commit

Permalink
Fix Studio sizing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-etamarch committed Nov 15, 2024
1 parent 8048736 commit 0add72f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion git-webui/release/share/git-webui/webui/js/git-webui.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {

// Search bar to filter the results
if (idPostfix =='popup') {
var searchBar = $('<input type="text" id="search-input" placeholder="Filter...">').appendTo(accordionDiv)[0];
var searchBar = $('<input type="text" id="search-input" placeholder="Filter..." style="width:100%">').appendTo(accordionDiv)[0];
searchBar.onkeyup = function(){
let branchCards = accordionDiv.getElementsByClassName("branch-card");

Expand Down
2 changes: 1 addition & 1 deletion git-webui/src/share/git-webui/webui/js/git-webui.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {

// Search bar to filter the results
if (idPostfix =='popup') {
var searchBar = $('<input type="text" id="search-input" placeholder="Filter...">').appendTo(accordionDiv)[0];
var searchBar = $('<input type="text" id="search-input" placeholder="Filter..." style="width:100%">').appendTo(accordionDiv)[0];
searchBar.onkeyup = function(){
let branchCards = accordionDiv.getElementsByClassName("branch-card");

Expand Down

0 comments on commit 0add72f

Please sign in to comment.