Skip to content

Commit

Permalink
fix color of plot changing upon clicking a control (#4845)
Browse files Browse the repository at this point in the history
Co-authored-by: Bryan Lai <laib1@mskcc.org>
  • Loading branch information
gblaih and Bryan Lai committed Feb 15, 2024
1 parent 5b49341 commit 6cc6ec1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/groupComparison/ClinicalData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,11 @@ export default class ClinicalData extends React.Component<
if (this.tableDataStore.allData.length === 0 || !this.highlightedRow) {
return <span></span>;
}
const promises = [this.horzAxisDataPromise, this.vertAxisDataPromise];
const promises = [
this.horzAxisDataPromise,
this.vertAxisDataPromise,
this.props.store.uidToGroup,
];
const groupStatus = getRemoteDataGroupStatus(...promises);
const isPercentage =
this.categoryPlotType === CategoryPlotType.PercentageStackedBar;
Expand Down

0 comments on commit 6cc6ec1

Please sign in to comment.