Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Dec 11, 2023
2 parents 8bf2996 + 5104fc7 commit 74fb3e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/institute/MoveSchoolPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ export default {
this.moveSchoolObject.grades = gradeList;
},
sortNLC() {
this.moveSchoolObject.neighborhoodLearning = sortBy(this.moveSchoolObject.neighborhoodLearning, ['neighborhoodLearningTypeCode']);
this.moveSchoolObject.neighborhoodLearning = sortBy(this.moveSchoolObject.neighborhoodLearning, ['label']);
},
async validateForm() {
await this.$nextTick();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/institute/common/Details.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,7 @@ export default {
this.schoolDetailsCopy.grades = gradeList;
},
sortNLC() {
this.schoolDetailsCopy.neighborhoodLearning = sortBy(this.schoolDetailsCopy.neighborhoodLearning, ['neighborhoodLearningTypeCode']);
this.schoolDetailsCopy.neighborhoodLearning = sortBy(this.schoolDetailsCopy.neighborhoodLearning, ['label']);
},
saveNewSchoolNote() {
this.loading = true;
Expand Down

0 comments on commit 74fb3e6

Please sign in to comment.