Skip to content

Commit 2f15ad8

Browse files
committed
Fix await error & class name
1 parent 0556cf4 commit 2f15ad8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/pages/resultsView/ResultsViewPageStore.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5819,6 +5819,7 @@ export class ResultsViewPageStore extends AnalysisStore
58195819
this.structuralVariantData,
58205820
this.clinicalDataForSamples,
58215821
this.studies,
5822+
this.uniqueSampleKeyToTumorType,
58225823
],
58235824
invoke: async () => {
58245825
if (getServerConfig().show_oncokb) {

src/pages/resultsView/structuralVariant/ResultsViewStructuralVariantMapperDataStore.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { computed, makeObservable } from 'mobx';
2323
import { SimpleLazyMobXTableApplicationDataStore } from 'shared/lib/ILazyMobXTableApplicationDataStore';
2424
import { StructuralVariant } from 'cbioportal-ts-api-client';
2525

26-
export default class FusionMapperDataStore extends SimpleLazyMobXTableApplicationDataStore<
26+
export default class ResultsViewStructuralVariantMapperDataStore extends SimpleLazyMobXTableApplicationDataStore<
2727
StructuralVariant[]
2828
> {
2929
constructor(data: StructuralVariant[][]) {

0 commit comments

Comments
 (0)