Skip to content

Commit

Permalink
Merge pull request #1917 from bcgov/feature/edx-2512
Browse files Browse the repository at this point in the history
Update DuplicateTab.vue
  • Loading branch information
alexmcdermid authored Jul 5, 2024
2 parents a3b5843 + 04c19f7 commit 49e40c1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@
</template>
</v-data-iterator>
<v-pagination
v-if="nonAllowableDuplicates.length > 0"
v-model="pageNumber"
:length="Math.ceil(nonAllowableDuplicates.length/10)"
total-visible="5"
Expand Down Expand Up @@ -209,6 +210,7 @@
</v-data-iterator>

<v-pagination
v-if="allowableDuplicates.length > 0"
v-model="pageNumber"
:length="Math.ceil(allowableDuplicates.length/10)"
total-visible="5"
Expand Down Expand Up @@ -271,6 +273,7 @@
</v-data-iterator>

<v-pagination
v-if="resolvedDuplicates.length > 0"
v-model="pageNumber"
:length="Math.ceil(resolvedDuplicates.length/10)"
total-visible="5"
Expand Down

0 comments on commit 49e40c1

Please sign in to comment.