We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da57e3a commit ab1daffCopy full SHA for ab1daff
lib/database/adapters/RunAdapter.js
@@ -293,8 +293,8 @@ class RunAdapter {
293
294
const adaptedQcFlags = qcFlags ? qcFlags.map(this.qcFlagAdapter.toEntity) : [];
295
entityObject.qcFlags = adaptedQcFlags.reduce((acc, qcFlag) => {
296
- acc[qcFlag.dplDetectorId] = acc[qcFlag.dplDetectorId] ?? [];
297
- acc[qcFlag.dplDetectorId].push(qcFlag);
+ acc[qcFlag.detectorId] = acc[qcFlag.detectorId] ?? [];
+ acc[qcFlag.detectorId].push(qcFlag);
298
return acc;
299
}, {});
300
0 commit comments