From cd780618cc93193770678f95d1682f0e2ef16d3b Mon Sep 17 00:00:00 2001 From: "nasir@endelospay.com" Date: Tue, 11 Jun 2024 02:13:41 +0500 Subject: [PATCH 1/2] fix --- .../js/pages/patients/patientprofile.vue | 525 ------------------ typed-router.d.ts | 1 - 2 files changed, 526 deletions(-) delete mode 100644 resources/js/pages/patients/patientprofile.vue diff --git a/resources/js/pages/patients/patientprofile.vue b/resources/js/pages/patients/patientprofile.vue deleted file mode 100644 index 61f71b5..0000000 --- a/resources/js/pages/patients/patientprofile.vue +++ /dev/null @@ -1,525 +0,0 @@ - - - - - diff --git a/typed-router.d.ts b/typed-router.d.ts index fe8e3ed..d5af2c5 100644 --- a/typed-router.d.ts +++ b/typed-router.d.ts @@ -161,7 +161,6 @@ declare module 'vue-router/auto/routes' { 'patients-patient-profile': RouteRecordInfo<'patients-patient-profile', '/patients/patient-profile', Record, Record>, 'patients-patien-tab-overview': RouteRecordInfo<'patients-patien-tab-overview', '/patients/PatienTabOverview', Record, Record>, 'patients-patient-bio-panel': RouteRecordInfo<'patients-patient-bio-panel', '/patients/PatientBioPanel', Record, Record>, - 'patients-patientprofile': RouteRecordInfo<'patients-patientprofile', '/patients/patientprofile', Record, Record>, 'patients-patient-question-profile': RouteRecordInfo<'patients-patient-question-profile', '/patients/PatientQuestionProfile', Record, Record>, 'patients-patients': RouteRecordInfo<'patients-patients', '/patients/patients', Record, Record>, 'patients-prescription-panel': RouteRecordInfo<'patients-prescription-panel', '/patients/PrescriptionPanel', Record, Record>, From 13cdd98356f84cdb2f8a9b2d34f9668f13867108 Mon Sep 17 00:00:00 2001 From: "nasir@endelospay.com" Date: Tue, 11 Jun 2024 02:28:32 +0500 Subject: [PATCH 2/2] fix --- resources/js/pages/patients/QuestionProgressBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/pages/patients/QuestionProgressBar.vue b/resources/js/pages/patients/QuestionProgressBar.vue index 9d78c9b..526176c 100644 --- a/resources/js/pages/patients/QuestionProgressBar.vue +++ b/resources/js/pages/patients/QuestionProgressBar.vue @@ -45,7 +45,7 @@ const finalValue = computed(() => { bgColor.value = 'warning' } if (operator[singleObject.type](singleObject, props.value) > 80 && operator[singleObject.type](singleObject, props.value) <= 100) { - bgColor.value = 'red' + bgColor.value = 'error' } return operator[singleObject.type](singleObject, props.value)