Skip to content

Commit

Permalink
Merge pull request #2425 from Nihantra-Patel/fix_pwa_translation
Browse files Browse the repository at this point in the history
fix: PWA translation in employee checkin and attendance request
  • Loading branch information
mergify[bot] authored Nov 18, 2024
2 parents 52aca16 + da64739 commit 5e08359
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 5e08359

Please sign in to comment.