Skip to content

Commit

Permalink
Merge pull request #1841 from bcgov/feature/pagination
Browse files Browse the repository at this point in the history
Issue with pagination
  • Loading branch information
mightycox authored Dec 13, 2023
2 parents 9990a0a + d89159d commit ea97fee
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@
</v-row>
<v-row>
<v-col :cols="listDetailMode? 6 : 12">
<v-data-table
<v-data-table-server
id="dataTable"
:key="selectedStudentHistoryId"
v-model="selectedRecords"
v-model:page="pageNumber"
v-model:items-length="studentHistoryResp.totalElements"
class="batch-file-table"
:headers="getHeaders()"
:items="studentHistoryResp.content"
Expand Down Expand Up @@ -75,7 +76,7 @@
</td>
</tr>
</template>
</v-data-table>
</v-data-table-server>
</v-col>
<v-col v-if="listDetailMode">
<StudentAuditHistoryDetail
Expand Down

0 comments on commit ea97fee

Please sign in to comment.