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