Skip to content

Commit

Permalink
fix: PWA translation in employee checkin and attendance request
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihantra-Patel committed Nov 18, 2024
1 parent 52aca16 commit da64739
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/views/attendance/AttendanceRequestList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
<script setup>
import { IonPage } from "@ionic/vue"
import ListView from "@/components/ListView.vue"
import { inject } from "vue"
const __ = inject("$translate")
const ATTENDANCE_REQUEST_FIELDS = ["name", "reason", "from_date", "to_date", "docstatus"]
const FILTER_CONFIG = [
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/views/attendance/EmployeeCheckinList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
<script setup>
import { IonPage } from "@ionic/vue"
import ListView from "@/components/ListView.vue"
import { inject } from "vue"
const __ = inject("$translate")
const EMPLOYEE_CHECKIN_FIELDS = ["name", "log_type", "time", "latitude", "longitude"]
Expand Down

0 comments on commit da64739

Please sign in to comment.