File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 9
9
"type" : " integer" ,
10
10
"title" : " History count" ,
11
11
"description" : " Number of (most recent) commits shown in the history log" ,
12
- "default" : 100
12
+ "default" : 25
13
13
}
14
14
}
15
15
}
Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ export class GitWidget extends Widget {
94
94
95
95
void registry . load ( key ) . then ( settings => {
96
96
this . _settings = settings ;
97
- // this._settings.changed.connect(this._loadSettings, this);
98
97
99
98
const element = (
100
99
< GitPanel
@@ -105,6 +104,8 @@ export class GitWidget extends Widget {
105
104
/>
106
105
) ;
107
106
this . component = ReactDOM . render ( element , this . node ) ;
107
+
108
+ this . _settings . changed . connect ( this . component . refresh , this ) ;
108
109
this . component . refresh ( ) ;
109
110
} ) ;
110
111
}
You can’t perform that action at this time.
0 commit comments