Skip to content

Issue 725 #739

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

Merged
merged 2 commits into from
Apr 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Pull event handler that does an IPM uninstall and load to handle deletes (#631)
- Partial support for production decomposition with the new interoperability editors
- Tooltips on branch operations in Git UI (#725)

### Fixed
- Popping from stash is more responsive (#687)
Expand Down
4 changes: 2 additions & 2 deletions git-webui/release/share/git-webui/webui/js/git-webui.js
Original file line number Diff line number Diff line change
Expand Up @@ -1009,13 +1009,13 @@ webui.SideBarView = function(mainView, noEventHandlers) {
'</section>' +
'<section id="sidebar-local-branches">' +
'<h4 class="mt-1">Local Branches' +
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" >' +
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" title="Create new branch">' +
webui.circlePlusIcon+
'</button>' + '</h4>' +
'</section>' +
'<section id="sidebar-remote-branches">' +
'<h4 class="mt-1">Remote Branches' +
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" >'+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" title="Git fetch of remote branches">'+
webui.refreshIcon+
'</button>' +'</h4>' +
'</section>' +
Expand Down
4 changes: 2 additions & 2 deletions git-webui/src/share/git-webui/webui/js/git-webui.js
Original file line number Diff line number Diff line change
Expand Up @@ -1009,13 +1009,13 @@ webui.SideBarView = function(mainView, noEventHandlers) {
'</section>' +
'<section id="sidebar-local-branches">' +
'<h4 class="mt-1">Local Branches' +
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" >' +
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" title="Create new branch">' +
webui.circlePlusIcon+
'</button>' + '</h4>' +
'</section>' +
'<section id="sidebar-remote-branches">' +
'<h4 class="mt-1">Remote Branches' +
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" >'+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" title="Git fetch of remote branches">'+
webui.refreshIcon+
'</button>' +'</h4>' +
'</section>' +
Expand Down
Loading