+
{{ $t('timesheet_approvals.print_report.title') }}
@@ -106,17 +111,17 @@
:key="index"
class="q-pa-xs col-6"
>
-
@@ -139,8 +144,8 @@
color="white"
dense
:val="type.value"
- checked-icon="download"
- unchecked-icon="highlight_off"
+ checked-icon="check_box"
+ unchecked-icon="check_box_outline_blank"
:label="$t(type.label)"
class="q-px-md q-py-xs shadow-4 rounded-25 full-width"
:class="selected_report_filters.includes(type.value) ? 'bg-accent text-white text-bold' : 'bg-white text-primary'"
diff --git a/src/modules/timesheet-approval/models/timesheet-approval-csv-report.models.ts b/src/modules/timesheet-approval/models/timesheet-approval-csv-report.models.ts
index 572e1a6..921605a 100644
--- a/src/modules/timesheet-approval/models/timesheet-approval-csv-report.models.ts
+++ b/src/modules/timesheet-approval/models/timesheet-approval-csv-report.models.ts
@@ -9,10 +9,10 @@ export class TimesheetApprovalCSVReportFilters {
constructor() {
this.shifts = true;
this.expenses = true;
- this.holiday = false;
- this.vacation = false;
+ this.holiday = true;
+ this.vacation = true;
this.targo = true;
- this.solucom = true;
+ this.solucom = false;
};
}