Skip to content

Commit

Permalink
Merge pull request #189 from SpeciesFileGroup/development
Browse files Browse the repository at this point in the history
Fix hydration mismatch
  • Loading branch information
jlpereira authored Nov 6, 2023
2 parents b9b79d0 + 8971300 commit 26e397e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions src/components/Layout/LayoutFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
<div class="container mx-auto text-sm pt-2 pb-4">
<div class="pt-4 pb-2 break-words">
{{ project_authors }}
<span
v-if="store.nextAuthor"
v-html="store.nextAuthor"
/>
<ClientOnly>
<span v-html="store.nextAuthor" />
</ClientOnly>
{{ project_citation }}.
<ClientOnly>
<span>Retrieved on {{ currentDate }}</span>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Pagination/VPagination.global.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
v-if="modelValue > props.rangePages"
class="border border-base-border px-2 py-1.5"
>
<span class="page gap"> ... </span>
...
</li>

<template
Expand Down Expand Up @@ -66,7 +66,7 @@
v-if="pages - modelValue >= rangePages"
class="border border-base-border px-2 py-1.5"
>
<span class="page gap"> ... </span>
...
</li>

<li class="page-item">
Expand Down

0 comments on commit 26e397e

Please sign in to comment.