diff --git a/api/api_v1/endpoints/interview.py b/api/api_v1/endpoints/interview.py index a2ad1c9..2e835f0 100644 --- a/api/api_v1/endpoints/interview.py +++ b/api/api_v1/endpoints/interview.py @@ -140,6 +140,9 @@ def chkData(data): if 'education' in res1: education = res1['education'] res1['education'] = education_dict[education] + if 'teacher_txt' in res1: + teacher_txt=json.loads(res1['teacher_txt']) + res1['teacher_txt'] = teacher_txt res_data.append(res1) return res_data