We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d9f0b commit a80d8fbCopy full SHA for a80d8fb
src/containers/SequenceSearch/components/SearchForm/index.jsx
@@ -11,7 +11,7 @@ class SearchForm extends React.Component {
11
if (databases.length > 1) {
12
return (
13
<div>
14
- <h1>Search an RNA sequence in
+ <h1>Search in
15
{
16
databases.map(function(item, index) {
17
return <span key={`${index}`}>{ (index ? ', ' : '') + item }</span>;
@@ -21,9 +21,9 @@ class SearchForm extends React.Component {
21
</div>
22
)
23
} else if (databases.length === 0) {
24
- return <h1>Search an RNA sequence in RNA databases</h1>
+ return <h1>Search in RNAcentral</h1>
25
} else {
26
- return <h1>Search an RNA sequence in {databases}</h1>
+ return <h1>Search in {databases}</h1>
27
}
28
29
0 commit comments