mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-07-01 03:03:50 +02:00
Commentout dev logging
This commit is contained in:
parent
b8c30b5703
commit
63e828d2df
@ -186,14 +186,14 @@
|
||||
function handleJobs(newJobs) {
|
||||
if (newJobs) {
|
||||
if (usePaging) {
|
||||
console.log('New Paging', $state.snapshot(paging))
|
||||
// console.log('New Paging', $state.snapshot(paging))
|
||||
jobs = [...newJobs]
|
||||
} else {
|
||||
if ($state.snapshot(page) == 1) {
|
||||
console.log('Page 1 Reset', [...newJobs])
|
||||
// console.log('Page 1 Reset', [...newJobs])
|
||||
jobs = [...newJobs]
|
||||
} else {
|
||||
console.log('Add Jobs', $state.snapshot(jobs), [...newJobs])
|
||||
// console.log('Add Jobs', $state.snapshot(jobs), [...newJobs])
|
||||
jobs = jobs.concat([...newJobs])
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user