Skip to content
Snippets Groups Projects
Commit 5b9d5694 authored by Mostafa Hadizadeh's avatar Mostafa Hadizadeh
Browse files

change pagination 30 per page

parent 9c5ca7d6
No related branches found
No related tags found
1 merge request!1Development2 into main to clean the repo
......@@ -762,7 +762,7 @@ export default {
elapsedTime: 0,
intervalId: null,
currentPage: 1,
rowsPerPage: 10,
rowsPerPage: 30,
totalJobs: 0,
searchQuery: '',
isLoading: false,
......@@ -970,7 +970,7 @@ export default {
get_schedulerjob_objects(page = 1, search = ''){
this.isLoading = true
scheduler_axios
.get(`/api/get_schedulerjob_objects_pagination/?page=${page}&limit=10&search=${search}`)
.get(`/api/get_schedulerjob_objects_pagination/?page=${page}&limit=30&search=${search}`)
.then(response => {
this.vars = response.data.results
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment