Skip to content

Commit

Permalink
Fix bug on limited boolean and isAnalysisUsed call
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Apr 24, 2023
1 parent 30f9079 commit a69bf8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/mda_viewer/components/DisciplinesEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ class DisciplinesEditor extends React.Component {
} = this.props;

const mdaId = db.mda.id;
const limited = db.isAnalysisUsed;
const limited = db.isAnalysisUsed();

let disciplines = nodes.map((node, i) => (
<Discipline
Expand Down

0 comments on commit a69bf8b

Please sign in to comment.