diff --git a/src/components/germplasm/GermplasmGenotypeView.vue b/src/components/germplasm/GermplasmGenotypeView.vue index 12d67a736..42324201a 100644 --- a/src/components/germplasm/GermplasmGenotypeView.vue +++ b/src/components/germplasm/GermplasmGenotypeView.vue @@ -27,7 +27,7 @@
-
-
+ + @@ -81,7 +82,7 @@ - +
@@ -182,6 +183,13 @@ export default class GermplasmGenotypeView extends GermplasmBase { } this.currentCallSetId = callsetId; + + //Currently for memory usage fetching data visualization is deprecated and so calls aren't retrieved, which results in a null error. + //This skips functionality dependent on calls while keeping the code for future implementations o + if (!this.genotypeData!.calls!) { + this.loading = false; + return; + } const callsByCallset: Map> = new Map(Object.entries(this.genotypeData!.calls!)); const callSet = callsByCallset.get(callsetId);