Skip to content

Commit

Permalink
Merge pull request #3051 from alisman/fixGenePanel
Browse files Browse the repository at this point in the history
Hot fix to properly await samples in gene panel calls
  • Loading branch information
alisman authored Feb 10, 2020
2 parents 97f5e56 + 526df52 commit 8c01b25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ export class PatientViewPageStore {
[sampleId: string]: GenePanelData;
}>(
{
await: () => [this.mutationMolecularProfileId],
await: () => [this.mutationMolecularProfileId, this.samples],
invoke: async () => {
if (this.mutationMolecularProfileId.result) {
return fetchGenePanelData(
Expand Down Expand Up @@ -1145,7 +1145,7 @@ export class PatientViewPageStore {
[sampleId: string]: GenePanelData;
}>(
{
await: () => [this.molecularProfileIdDiscrete],
await: () => [this.molecularProfileIdDiscrete, this.samples],
invoke: async () => {
if (this.molecularProfileIdDiscrete.result) {
return fetchGenePanelData(
Expand Down

0 comments on commit 8c01b25

Please sign in to comment.