Skip to content

Commit

Permalink
fixing a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Viterbo committed Feb 2, 2023
1 parent 5037029 commit 8579c01
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/InternalTransactionTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default {
if (typeof pag === 'number') {
page = pag;
} else if (typeof pag === 'string') {
// we also allow to pass a string of two numbers: [page, rowsPerPage]
// we also allow to pass a string of two numbers: 'page,rowsPerPage'
const [p, s] = pag.split(',');
page = p;
size = s;
Expand Down Expand Up @@ -142,7 +142,6 @@ export default {
page: `${page},${rowsPerPage}`,
},
});
},
async onRequest(props) {
this.loading = true;
Expand Down

0 comments on commit 8579c01

Please sign in to comment.