Skip to content

Commit

Permalink
UI bugs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliorighi committed Oct 3, 2023
1 parent 2af9d51 commit 521cb44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions biogenome-client/src/components/ui/SampleCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@
<p class="va-text-secondary">{{ data.scientific_name }}</p>
</div>
<div class="flex">
<va-button-actions vertical align="between">
<va-button preset="plain" size="small" v-if="data.assemblies.length" icon="fa-dna" color="background-tertiary" />
<va-button preset="plain" size="small" v-if="data.experiments.length" icon="fa-file-lines" color="background-tertiary" />
</va-button-actions>
<va-button preset="plain" size="small" v-if="data.assemblies && data.assemblies.length" icon="fa-dna" color="background-tertiary" />
<va-button class="ml-2" preset="plain" size="small" v-if="data.experiments && data.experiments.length" icon="fa-file-lines" color="background-tertiary" />
</div>
</va-card>
</template>
Expand Down
2 changes: 1 addition & 1 deletion biogenome-client/src/pages/local-samples/LocalSample.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<KeyValueCard v-if="localSampleSelectedMetadata.length && metadata" :metadata="metadata"
:selected-metadata="localSampleSelectedMetadata" />
<div class="row row-equal">
<div v-if="coordinates.length" class="flex lg6 md6 sm12 xs12">
<div v-if="coordinates.length" class="flex lg6 md6 sm12 xs12 chart">
<LeafletMap :coordinates="coordinates" />
</div>
<div v-if="metadata && Object.keys(metadata).length" class="flex lg12 md12 sm12 xs12">
Expand Down

0 comments on commit 521cb44

Please sign in to comment.