Skip to content

Commit

Permalink
Merge branch 'table_fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
oganm committed Sep 18, 2024
2 parents 232e7da + ef98e07 commit 95e50d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Browser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
Quality: {{ formatDecimal(item.geeq.publicQualityScore) }}
</div>
</v-tooltip>
<span v-else>N/A</span>
<span v-else></span>
</template>
<template v-slot:item.lastUpdated="{item}">
{{ new Date(item.lastUpdated).toLocaleDateString() }}
{{ item.lastUpdated ? new Date(item.lastUpdated).toLocaleDateString() : "" }}
</template>
<template v-slot:item.taxon="{item}">
<span v-text="item.taxon.commonName" class="text-capitalize"/>
Expand Down

0 comments on commit 95e50d4

Please sign in to comment.