File tree Expand file tree Collapse file tree
lib/public/views/Runs/Overview Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -174,13 +174,13 @@ export class RunsWithQcModel extends RunsOverviewModel {
174174 * @param {ObservableData<RemoteData>[] } observables observable data list
175175 */
176176 registerObservablesQcSummaryDependsOn ( observables ) {
177- this . _observablesQcFlagsSummaryDepndsOn $ = ObservableData
177+ this . _observablesQcFlagsSummaryDependsOn $ = ObservableData
178178 . builder ( )
179179 . sources ( observables )
180180 . apply ( ( remoteDataList ) => mergeRemoteData ( remoteDataList ) )
181181 . build ( ) ;
182182
183- this . _observablesQcFlagsSummaryDepndsOn $
183+ this . _observablesQcFlagsSummaryDependsOn $
184184 . observe ( ( observableData ) => observableData . getCurrent ( ) . apply ( { Success : ( ) => this . _fetchQcSummary ( ) } ) ) ;
185185 }
186186
@@ -208,8 +208,8 @@ export class RunsWithQcModel extends RunsOverviewModel {
208208 async _fetchQcSummary ( ) {
209209 const qcSummaryScopeValid = Object . entries ( this . qcSummaryScope ) . filter ( ( [ , id ] ) => id ) . length == 1 ;
210210
211- if ( qcSummaryScopeValid && this . detectors && this . _observablesQcFlagsSummaryDepndsOn $. getCurrent ( ) ) {
212- mergeRemoteData ( [ this . detectors , this . _observablesQcFlagsSummaryDepndsOn $. getCurrent ( ) ] ) . match ( {
211+ if ( qcSummaryScopeValid && this . detectors && this . _observablesQcFlagsSummaryDependsOn $. getCurrent ( ) ) {
212+ mergeRemoteData ( [ this . detectors , this . _observablesQcFlagsSummaryDependsOn $. getCurrent ( ) ] ) . match ( {
213213 Success : async ( [ detectors ] ) => {
214214 this . _qcSummary$ . setCurrent ( RemoteData . loading ( ) ) ;
215215 try {
You can’t perform that action at this time.
0 commit comments