Skip to content

Commit 6cc6ec1

Browse files
gblaihBryan Lai
and
Bryan Lai
authored
fix color of plot changing upon clicking a control (#4845)
Co-authored-by: Bryan Lai <laib1@mskcc.org>
1 parent 5b49341 commit 6cc6ec1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/pages/groupComparison/ClinicalData.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,11 @@ export default class ClinicalData extends React.Component<
807807
if (this.tableDataStore.allData.length === 0 || !this.highlightedRow) {
808808
return <span></span>;
809809
}
810-
const promises = [this.horzAxisDataPromise, this.vertAxisDataPromise];
810+
const promises = [
811+
this.horzAxisDataPromise,
812+
this.vertAxisDataPromise,
813+
this.props.store.uidToGroup,
814+
];
811815
const groupStatus = getRemoteDataGroupStatus(...promises);
812816
const isPercentage =
813817
this.categoryPlotType === CategoryPlotType.PercentageStackedBar;

0 commit comments

Comments
 (0)