Skip to content

Commit

Permalink
clean up console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasxsong committed Mar 5, 2024
1 parent 622da38 commit 2051622
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
6 changes: 0 additions & 6 deletions src/pages/ProgressReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@
</div>
</div>

<!-- <div v-if="refreshing" class="loading-container">
<AppSpinner style="margin-bottom: 1rem" />
<span>Loading Progress Data</span>
</div> -->
<div v-if="assignmentData?.length === 0" class="no-scores-container">
<h3>No scores found.</h3>
<span
Expand Down Expand Up @@ -631,7 +627,6 @@ const tableData = computed(() => {
let unsubscribe;
const refreshing = ref(false);
const refresh = () => {
console.log('refreshing called');
refreshing.value = true;
if (unsubscribe) unsubscribe();

Expand All @@ -644,7 +639,6 @@ unsubscribe = authStore.$subscribe(async (mutation, state) => {
});
const { roarfirekit } = storeToRefs(authStore);
onMounted(async () => {
console.log('onmounted called');
if (roarfirekit.value.restConfig) refresh();
});
</script>
Expand Down
2 changes: 0 additions & 2 deletions src/pages/ScoreReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -605,9 +605,7 @@ const onFilter = (event) => {
const filters = [];
for (const filterKey in _get(event, 'filters')) {
const filter = _get(event, 'filters')[filterKey];
console.log('filter', filter, _head(filterKey.split('.')));
const constraint = _head(_get(filter, 'constraints'));
console.log('constraint', constraint);
if (_get(constraint, 'value')) {
const path = filterKey.split('.');
if (_head(path) === 'user') {
Expand Down

0 comments on commit 2051622

Please sign in to comment.