Skip to content

Commit

Permalink
fix color of plot changing upon clicking a control
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Lai committed Feb 7, 2024
1 parent da144c3 commit d0e7428
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 d0e7428

Please sign in to comment.