File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
extension/src/experiments/data Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,7 @@ export class ExperimentsData extends BaseData<ExperimentsOutput> {
4747 }
4848
4949 public async update ( ) : Promise < void > {
50- await Promise . all ( [
51- this . notifyChanged ( await this . updateExpShow ( ) ) ,
52- this . notifyChanged ( await this . updateRemoteExpRefs ( ) )
53- ] )
50+ await Promise . all ( [ this . updateExpShow ( ) , this . updateRemoteExpRefs ( ) ] )
5451 }
5552
5653 private async updateExpShow ( ) {
@@ -77,8 +74,9 @@ export class ExperimentsData extends BaseData<ExperimentsOutput> {
7774 ...args
7875 )
7976
77+ this . notifyChanged ( { availableNbCommits, expShow, gitLog, rowOrder } )
78+
8079 this . collectFiles ( { expShow } )
81- return { availableNbCommits, expShow, gitLog, rowOrder }
8280 }
8381
8482 private async collectGitLogByBranch (
@@ -184,7 +182,8 @@ export class ExperimentsData extends BaseData<ExperimentsOutput> {
184182 ) ,
185183 this . isReady ( )
186184 ] )
187- return { remoteExpRefs }
185+
186+ this . notifyChanged ( { remoteExpRefs } )
188187 }
189188
190189 private waitForInitialLocalData ( ) {
You can’t perform that action at this time.
0 commit comments