Skip to content
Snippets Groups Projects
Commit 9baa1b83 authored by ahamelers's avatar ahamelers
Browse files

dom nesting error fix

parent 81698cb2
No related branches found
No related tags found
2 merge requests!75Shared data model,!77Dev
......@@ -332,9 +332,10 @@ class PubMedSearch extends React.Component {
value={query}
/>
{hitcount !== null && (
<Notice>
<B>Select your citation from results</B>
<br />
<React.Fragment>
<Notice>
<B>Select your citation from results</B>
</Notice>
{(hitcount === 0 || results.length > 0) && (
<React.Fragment>
{this.props.changeNote ? (
......@@ -359,7 +360,7 @@ class PubMedSearch extends React.Component {
)}
</React.Fragment>
)}
</Notice>
</React.Fragment>
)}
{results.length > 0 && (
<ApolloConsumer>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment