Skip to content

Commit f6edc96

Browse files
committed
[O2B-1528] Failed to store GAQ summary correctly
When updating the GAQ summary for a run, store the actual success payload instead of the raw remoteData object.
1 parent f3533d0 commit f6edc96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/public/views/Runs/RunPerDataPass/RunsPerDataPassOverviewModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ export class RunsPerDataPassOverviewModel extends FixedPdpBeamTypeRunsOverviewMo
355355
const current = this._gaqSummary$.getCurrent();
356356
this._gaqSummary$.setCurrent({
357357
...current,
358-
[runNumber]: remoteData,
358+
[runNumber]: remoteData.apply({ Success: (response) => response.data }),
359359
});
360360
},
361361
});

0 commit comments

Comments
 (0)