Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xsalonx committed Apr 10, 2024
1 parent a1f1c70 commit dcf425e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/public/views/QcFlags/Overview/QcFlagsOverviewModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class QcFlagsOverviewModel extends OverviewPageModel {
? RemoteData.success(dplDetector)
: RemoteData.failure({ errors: [{ detail: `There is no dplDetector with given id (${this._dplDetectorId})` }] });

Check warning on line 74 in lib/public/views/QcFlags/Overview/QcFlagsOverviewModel.js

View check run for this annotation

Codecov / codecov/patch

lib/public/views/QcFlags/Overview/QcFlagsOverviewModel.js#L68-L74

Added lines #L68 - L74 were not covered by tests
},
Failure: (payload) => RemoteData.error(payload),
Failure: (payload) => RemoteData.failure(payload),
Loading: () => RemoteData.loading(),
NotAsked: () => RemoteData.notAsked(),

Check warning on line 78 in lib/public/views/QcFlags/Overview/QcFlagsOverviewModel.js

View check run for this annotation

Codecov / codecov/patch

lib/public/views/QcFlags/Overview/QcFlagsOverviewModel.js#L76-L78

Added lines #L76 - L78 were not covered by tests
}));
Expand Down

0 comments on commit dcf425e

Please sign in to comment.