7691-testToMaster #537

Merged
alexm merged 395 commits from 7691-testToMaster into master 2024-07-09 05:39:56 +00:00
2 changed files with 0 additions and 2 deletions
Showing only changes of commit 2ea87ea920 - Show all commits

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>