Skip to content

Commit 0add72f

Browse files
committed
Fix Studio sizing issues
1 parent 8048736 commit 0add72f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

git-webui/release/share/git-webui/webui/js/git-webui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
396396

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

git-webui/src/share/git-webui/webui/js/git-webui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
396396

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

0 commit comments

Comments
 (0)