Skip to content

Commit bc350d0

Browse files
committed
remove unnecessary console logs
1 parent 0047fb1 commit bc350d0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

adminforth/spa/src/components/ResourceListTable.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,13 +332,10 @@ watch(() => sort.value, (newSort) => {
332332
});
333333
334334
watch(() => checkboxesInternal.value, (newCheckboxes) => {
335-
console.log('checkboxesInternal ch changed, emiting', newCheckboxes)
336-
337335
emits('update:checkboxes', newCheckboxes);
338336
});
339337
340338
watch(() => props.checkboxes, (newCheckboxes) => {
341-
console.log('Props ch changed', newCheckboxes)
342339
checkboxesInternal.value = newCheckboxes;
343340
});
344341
@@ -351,7 +348,6 @@ watch(() => props.page, (newPage) => {
351348
});
352349
353350
function addToCheckedValues(id) {
354-
console.log('checking', checkboxesInternal.value, 'id', id)
355351
if (checkboxesInternal.value.includes(id)) {
356352
checkboxesInternal.value = checkboxesInternal.value.filter((item) => item !== id);
357353
} else {

0 commit comments

Comments
 (0)