diff --git a/app/pages/(features)/patient/add.vue b/app/pages/(features)/patient/add.vue index 6532240a..321ec460 100644 --- a/app/pages/(features)/patient/add.vue +++ b/app/pages/(features)/patient/add.vue @@ -13,7 +13,7 @@ definePageMeta({ const route = useRoute() useHead({ - title: () => route.meta.title, + title: () => `${route.meta.title}`, // backtick to avoid the ts-plugin(2322) warning }) const roleAccess: PagePermission = PAGE_PERMISSIONS['/patient'] diff --git a/app/pages/(features)/rehab/encounter/[id]/detail.vue b/app/pages/(features)/rehab/encounter/[id]/detail.vue index e26b566c..d76dc1e7 100644 --- a/app/pages/(features)/rehab/encounter/[id]/detail.vue +++ b/app/pages/(features)/rehab/encounter/[id]/detail.vue @@ -13,7 +13,7 @@ definePageMeta({ const route = useRoute() useHead({ - title: () => route.meta.title, + title: () => `${route.meta.title}`, // backtick to avoid the ts-plugin(2322) warning }) const roleAccess: PagePermission = PAGE_PERMISSIONS['/rehab/encounter'] diff --git a/app/pages/(features)/rehab/encounter/[id]/edit.vue b/app/pages/(features)/rehab/encounter/[id]/edit.vue index 9391a12d..237a5d2f 100644 --- a/app/pages/(features)/rehab/encounter/[id]/edit.vue +++ b/app/pages/(features)/rehab/encounter/[id]/edit.vue @@ -13,7 +13,7 @@ definePageMeta({ const route = useRoute() useHead({ - title: () => route.meta.title, + title: () => `${route.meta.title}`, // backtick to avoid the ts-plugin(2322) warning }) const roleAccess: PagePermission = PAGE_PERMISSIONS['/rehab/encounter'] diff --git a/app/pages/(features)/rehab/encounter/[id]/process.vue b/app/pages/(features)/rehab/encounter/[id]/process.vue index 8918318d..5ae6fb89 100644 --- a/app/pages/(features)/rehab/encounter/[id]/process.vue +++ b/app/pages/(features)/rehab/encounter/[id]/process.vue @@ -13,7 +13,7 @@ definePageMeta({ const route = useRoute() useHead({ - title: () => route.meta.title, + title: () => `${route.meta.title}`, }) const roleAccess: PagePermission = PAGE_PERMISSIONS['/rehab/encounter'] diff --git a/app/pages/(features)/rehab/encounter/add.vue b/app/pages/(features)/rehab/encounter/add.vue index 1558f645..37b6bde1 100644 --- a/app/pages/(features)/rehab/encounter/add.vue +++ b/app/pages/(features)/rehab/encounter/add.vue @@ -13,7 +13,7 @@ definePageMeta({ const route = useRoute() useHead({ - title: () => route.meta.title, + title: () => `${route.meta.title}`, // backtick to avoid the ts-plugin(2322) warning }) const roleAccess: PagePermission = PAGE_PERMISSIONS['/rehab/encounter'] diff --git a/app/pages/(features)/rehab/registration/[id]/detail.vue b/app/pages/(features)/rehab/registration/[id]/detail.vue index fe91932a..553aa383 100644 --- a/app/pages/(features)/rehab/registration/[id]/detail.vue +++ b/app/pages/(features)/rehab/registration/[id]/detail.vue @@ -13,7 +13,7 @@ definePageMeta({ const route = useRoute() useHead({ - title: () => route.meta.title, + title: () => `${route.meta.title}`, // backtick to avoid the ts-plugin(2322) warning }) const roleAccess: PagePermission = PAGE_PERMISSIONS['/rehab/registration'] diff --git a/app/pages/(features)/rehab/registration/[id]/edit.vue b/app/pages/(features)/rehab/registration/[id]/edit.vue index a2cfab84..b99fb50d 100644 --- a/app/pages/(features)/rehab/registration/[id]/edit.vue +++ b/app/pages/(features)/rehab/registration/[id]/edit.vue @@ -13,7 +13,7 @@ definePageMeta({ const route = useRoute() useHead({ - title: () => route.meta.title, + title: () => `${route.meta.title}`, // backtick to avoid the ts-plugin(2322) warning }) const roleAccess: PagePermission = PAGE_PERMISSIONS['/rehab/registration'] diff --git a/app/pages/(features)/rehab/registration/add.vue b/app/pages/(features)/rehab/registration/add.vue index 1ef3e3fa..73ebe70b 100644 --- a/app/pages/(features)/rehab/registration/add.vue +++ b/app/pages/(features)/rehab/registration/add.vue @@ -13,7 +13,7 @@ definePageMeta({ const route = useRoute() useHead({ - title: () => route.meta.title, + title: () => `${route.meta.title}`, // backtick to avoid the ts-plugin(2322) warning }) const roleAccess: PagePermission = PAGE_PERMISSIONS['/rehab/registration']