0
0
Fork 0

fix: refs #7129 remove consoleLog

This commit is contained in:
Pablo Natek 2024-06-19 10:19:12 +02:00
parent 05d7a61468
commit 2ea87ea920
2 changed files with 0 additions and 2 deletions

View File

@ -120,7 +120,6 @@ const refreshKey = ref(0);
const total = computed(() => {
return selectedRows.value.reduce((sum, item) => sum + item.price, 0);
});
console.log('total: ', total);
const openDmsUploadDialog = async () => {
dmsDialog.value.rowsToCreateInvoiceIn = selectedRows.value

View File

@ -129,7 +129,6 @@ function confirmRemove() {
}
function navigateToRoadmapSummary(event, row) {
console.log('row.id : ', row.id);
router.push({ name: 'RoadmapSummary', params: { id: 1 } });
}
</script>