Skip to content

Commit a147078

Browse files
authored
Merge pull request #739 from intersystems/issue-725
Issue 725
2 parents ea48904 + b936db7 commit a147078

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Pull event handler that does an IPM uninstall and load to handle deletes (#631)
1212
- Partial support for production decomposition with the new interoperability editors
13+
- Tooltips on branch operations in Git UI (#725)
1314

1415
### Fixed
1516
- Changing system mode (environment name) in setting spersists after instance restart (#655)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,13 +1009,13 @@ webui.SideBarView = function(mainView, noEventHandlers) {
10091009
'</section>' +
10101010
'<section id="sidebar-local-branches">' +
10111011
'<h4 class="mt-1">Local Branches' +
1012-
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" >' +
1012+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" title="Create new branch">' +
10131013
webui.circlePlusIcon+
10141014
'</button>' + '</h4>' +
10151015
'</section>' +
10161016
'<section id="sidebar-remote-branches">' +
10171017
'<h4 class="mt-1">Remote Branches' +
1018-
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" >'+
1018+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" title="Git fetch of remote branches">'+
10191019
webui.refreshIcon+
10201020
'</button>' +'</h4>' +
10211021
'</section>' +

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,13 +1009,13 @@ webui.SideBarView = function(mainView, noEventHandlers) {
10091009
'</section>' +
10101010
'<section id="sidebar-local-branches">' +
10111011
'<h4 class="mt-1">Local Branches' +
1012-
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" >' +
1012+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" title="Create new branch">' +
10131013
webui.circlePlusIcon+
10141014
'</button>' + '</h4>' +
10151015
'</section>' +
10161016
'<section id="sidebar-remote-branches">' +
10171017
'<h4 class="mt-1">Remote Branches' +
1018-
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" >'+
1018+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" title="Git fetch of remote branches">'+
10191019
webui.refreshIcon+
10201020
'</button>' +'</h4>' +
10211021
'</section>' +

0 commit comments

Comments
 (0)