chore: removed console.logs

This commit is contained in:
2025-01-26 18:05:03 +01:00
parent 5f561607ab
commit 9abd8c302e
2 changed files with 2 additions and 5 deletions
+1 -4
View File
@@ -3,10 +3,7 @@ import { useAuthStore } from './stores/auth.store';
export function createRouteGuard(router: Router) {
router.beforeEach((to, from, next) => {
const authStore = useAuthStore();
console.log(to);
const authStore = useAuthStore();
if (to.meta.protected && !authStore.user && !window.localStorage.getItem('user')) {
next('/login');
+1 -1
View File
@@ -175,7 +175,7 @@ export default defineComponent({
row.pendingChanges = { ...row.pendingChanges, ...changedVehileObj };
console.log(this.vehiclesStore.vehiclesTable.filter((v) => Object.keys(v.pendingChanges).length > 0));
// console.log(this.vehiclesStore.vehiclesTable.filter((v) => Object.keys(v.pendingChanges).length > 0));
},
getTableValueHTML(pendingValue: any, originalValue: any) {