remove console.log statements. Will be using debugger going forward.
This commit is contained in:
parent
871b54a2c5
commit
83dd3a4de4
|
|
@ -14,7 +14,6 @@
|
|||
const is_game_time = computed(() => email.value.includes('allumette'));
|
||||
|
||||
const onSubmitConnectionRequest = () => {
|
||||
console.log('submit requested');
|
||||
if (is_employee_email.value) return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
const handleSend = async () => {
|
||||
const message = text.value.trim();
|
||||
text.value = '';
|
||||
console.log('message: ', message, ', length: ', message.length);
|
||||
await chatbot_api.sendMessage(message);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,6 @@
|
|||
|
||||
const onClickedDownload = async () => {
|
||||
const response = await timesheetApprovalApi.getTimesheetApprovalCSVReport(reportFilters.value);
|
||||
console.log(response);
|
||||
if (!response) {
|
||||
Notify.create({
|
||||
message: t('timesheet_approvals.print_report.download_failed'),
|
||||
|
|
|
|||
|
|
@ -75,7 +75,6 @@
|
|||
const onClickAttachment = async () => {
|
||||
expenseStore.isShowingAttachmentDialog = true;
|
||||
await expenseStore.getAttachmentURL(expense.value.attachment_key);
|
||||
console.log('image url: ', expenseStore.attachmentURL);
|
||||
}
|
||||
|
||||
const hideUpdateForm = () => {
|
||||
|
|
|
|||
|
|
@ -86,7 +86,6 @@
|
|||
|
||||
if (option.value === 'SICK' || option.value === 'VACATION') {
|
||||
const workedMinutes = getCurrentDailyMinutesWorked(currentShifts);
|
||||
console.log('worked minutes: ', workedMinutes);
|
||||
const expectedWorkedMinutes = expectedDailyHours * 60;
|
||||
const leftOverMinutes = expectedWorkedMinutes - workedMinutes;
|
||||
|
||||
|
|
|
|||
|
|
@ -153,7 +153,6 @@
|
|||
|
||||
if (option.value === 'SICK' || option.value === 'VACATION') {
|
||||
const workedMinutes = getCurrentDailyMinutesWorked(currentShifts);
|
||||
console.log('worked minutes: ', workedMinutes);
|
||||
const expectedWorkedMinutes = expectedDailyHours * 60;
|
||||
const leftOverMinutes = expectedWorkedMinutes - workedMinutes;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user