From 148677a709343f38258dd692f6fa6222564f416e Mon Sep 17 00:00:00 2001 From: ANSINGH Date: Thu, 13 Jul 2023 16:17:11 -0700 Subject: [PATCH] changed json to string --- frontend/src/components/institute/DistrictDetails.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/institute/DistrictDetails.vue b/frontend/src/components/institute/DistrictDetails.vue index 491a9e837..b1aac6bf2 100644 --- a/frontend/src/components/institute/DistrictDetails.vue +++ b/frontend/src/components/institute/DistrictDetails.vue @@ -804,7 +804,7 @@ export default { }, viewSchools() { this.schoolSearchParams.districtID = this.districtID; - this.schoolSearchParams.status = {name: 'Open', code: 'Open'}; + this.schoolSearchParams.status = 'Open'; this.setSchoolSearchParams(this.schoolSearchParams); this.$router.push({name: 'instituteSchoolList'}); },