Skip to content

Commit

Permalink
refactor: display conversion field as default in reaction scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
adambasha0 committed Oct 29, 2024
1 parent 3f82f54 commit d455039
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,13 +365,13 @@ SolventsMaterialGroup.propTypes = {
MaterialGroup.defaultProps = {
showLoadingColumn: false,
lockEquivColumn: false,
displayYieldField: true
displayYieldField: false
};

GeneralMaterialGroup.defaultProps = {
showLoadingColumn: false,
lockEquivColumn: false,
displayYieldField: true
displayYieldField: false
};

export { MaterialGroup, GeneralMaterialGroup, SolventsMaterialGroup };
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default class ReactionDetailsScheme extends Component {
this.state = {
reaction,
lockEquivColumn: false,
displayYieldField: true,
displayYieldField: false,
cCon: false,
reactionDescTemplate: textTemplate.toJS(),
open: true,
Expand Down

0 comments on commit d455039

Please sign in to comment.