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 5b49341 commit 6cc6ec1Copy full SHA for 6cc6ec1
src/pages/groupComparison/ClinicalData.tsx
@@ -807,7 +807,11 @@ export default class ClinicalData extends React.Component<
807
if (this.tableDataStore.allData.length === 0 || !this.highlightedRow) {
808
return <span></span>;
809
}
810
- const promises = [this.horzAxisDataPromise, this.vertAxisDataPromise];
+ const promises = [
811
+ this.horzAxisDataPromise,
812
+ this.vertAxisDataPromise,
813
+ this.props.store.uidToGroup,
814
+ ];
815
const groupStatus = getRemoteDataGroupStatus(...promises);
816
const isPercentage =
817
this.categoryPlotType === CategoryPlotType.PercentageStackedBar;
0 commit comments