Skip to content

Commit

Permalink
Update DashboardLog.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Nov 1, 2023
1 parent 5d7abce commit ff4f65a
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions resources/js/components/dashboard/DashboardLog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -332,33 +332,33 @@ export default {
this.saveTab(view);
switch (view) {
case 'calls':
if (! this.callsAlreadyLoaded) {
this.getCalls();
this.callsAlreadyLoaded = true;
}
break;
case 'notes':
if (! this.notesAlreadyLoaded) {
this.getNotes();
this.notesAlreadyLoaded = true;
}
break;
case 'debts':
if (! this.debtsAlreadyLoaded) {
this.getDebts();
this.debtsAlreadyLoaded = true;
}
break;
case 'tasks':
if (! this.tasksAlreadyLoaded) {
this.getTasks();
this.tasksAlreadyLoaded = true;
}
break;
case 'calls':
if (! this.callsAlreadyLoaded) {
this.getCalls();
this.callsAlreadyLoaded = true;
}
break;
case 'notes':
if (! this.notesAlreadyLoaded) {
this.getNotes();
this.notesAlreadyLoaded = true;
}
break;
case 'debts':
if (! this.debtsAlreadyLoaded) {
this.getDebts();
this.debtsAlreadyLoaded = true;
}
break;
case 'tasks':
if (! this.tasksAlreadyLoaded) {
this.getTasks();
this.tasksAlreadyLoaded = true;
}
break;
}
},
Expand Down

0 comments on commit ff4f65a

Please sign in to comment.