Skip to content

Commit

Permalink
fix double cdf plot rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
shapiromatron committed Apr 30, 2024
1 parent 7be9be5 commit a46ded4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions frontend/src/components/IndividualModel/ModelDetailModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,12 @@ class ModelBody extends Component {
<CDFTable bmd_dist={model.results.fit.bmd_dist} />
</Col>
<Col xl={8}>
<CDFPlot dataset={dataset} cdf={model.results.fit.bmd_dist} />
<CDFPlot
dataset={dataset}
cdf={model.results.fit.bmd_dist}
{...getCdfData(model)}
/>
</Col>
<CDFPlot
dataset={dataset}
cdf={model.results.fit.bmd_dist}
{...getCdfData(model)}
/>
</Row>
</Modal.Body>
);
Expand Down

0 comments on commit a46ded4

Please sign in to comment.