File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
release/share/git-webui/webui/js
src/share/git-webui/webui/js Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
### Added
11
11
- Pull event handler that does an IPM uninstall and load to handle deletes (#631 )
12
12
- Partial support for production decomposition with the new interoperability editors
13
+ - Tooltips on branch operations in Git UI (#725 )
13
14
14
15
### Fixed
15
16
- Changing system mode (environment name) in setting spersists after instance restart (#655 )
Original file line number Diff line number Diff line change @@ -1009,13 +1009,13 @@ webui.SideBarView = function(mainView, noEventHandlers) {
1009
1009
'</section>' +
1010
1010
'<section id="sidebar-local-branches">' +
1011
1011
'<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" >' +
1013
1013
webui . circlePlusIcon +
1014
1014
'</button>' + '</h4>' +
1015
1015
'</section>' +
1016
1016
'<section id="sidebar-remote-branches">' +
1017
1017
'<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" >' +
1019
1019
webui . refreshIcon +
1020
1020
'</button>' + '</h4>' +
1021
1021
'</section>' +
Original file line number Diff line number Diff line change @@ -1009,13 +1009,13 @@ webui.SideBarView = function(mainView, noEventHandlers) {
1009
1009
'</section>' +
1010
1010
'<section id="sidebar-local-branches">' +
1011
1011
'<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" >' +
1013
1013
webui . circlePlusIcon +
1014
1014
'</button>' + '</h4>' +
1015
1015
'</section>' +
1016
1016
'<section id="sidebar-remote-branches">' +
1017
1017
'<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" >' +
1019
1019
webui . refreshIcon +
1020
1020
'</button>' + '</h4>' +
1021
1021
'</section>' +
You can’t perform that action at this time.
0 commit comments