Skip to content

Commit

Permalink
Hide strain/condition if None
Browse files Browse the repository at this point in the history
  • Loading branch information
neoformit committed Dec 11, 2023
1 parent 50a89da commit 07b2a7e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -392,13 +392,13 @@ <h3 class="text-center">{{ genomeDetails.name }}</h3>
</td>
<td><i>{{ genomeDetails.species }}</i></td>
</tr>
<tr>
<tr v-if="genomeDetails.strain">
<td>
<strong>Strain</strong>
</td>
<td>{{ genomeDetails.strain }}</td>
</tr>
<tr>
<tr v-if="genomeDetails.condition">
<td>
<strong>Condition</strong>
</td>
Expand Down

0 comments on commit 07b2a7e

Please sign in to comment.