File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1212 - Remembers and restores the last commit search string
1313 - Adds the _ Search Commits_ command to the search results inline toolbar
1414 - Reopens the commit search when clicking on a search results without results
15+ - Adds a _ Collapse_ command to the toolbars of the _ Compare_ and _ Search Commits_ views
1516
1617### Fixed
1718
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export class CompareView extends ViewBase<CompareNode> {
6262 }
6363
6464 if ( configuration . changed ( e , configuration . name ( 'views' ) ( 'compare' ) ( 'location' ) . value ) ) {
65- this . initialize ( this . config . location /* , { showCollapseAll: true } */ ) ;
65+ this . initialize ( this . config . location , { showCollapseAll : true } ) ;
6666 }
6767
6868 if ( ! configuration . initializing ( e ) && this . _root !== undefined ) {
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export class SearchView extends ViewBase<SearchNode> {
6565 }
6666
6767 if ( configuration . changed ( e , configuration . name ( 'views' ) ( 'search' ) ( 'location' ) . value ) ) {
68- this . initialize ( this . config . location /* , { showCollapseAll: true } */ ) ;
68+ this . initialize ( this . config . location , { showCollapseAll : true } ) ;
6969 }
7070
7171 if ( ! configuration . initializing ( e ) && this . _root !== undefined ) {
You can’t perform that action at this time.
0 commit comments