Skip to content

Commit

Permalink
fix spin issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fanglinfang committed Jul 9, 2024
1 parent 2987acf commit 0f7fb5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions myuw_vue/components/academics/adviser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ export default {
return !this.isPCE && (this.isUndergrad || this.studEmployee) && !this.isGrad;
},
hasAdviser() {
return this.advisers && this.advisers.length > 0;
return this.isReadyAdvisers && this.advisers && this.advisers.length > 0;
},
hasProfile() {
return (
this.profile &&
this.isReadyProfile && this.profile &&
this.profile.campus !== undefined &&
(this.profile.class_level === 'FRESHMAN' ||
this.profile.class_level === "SOPHOMORE" ||
Expand Down

0 comments on commit 0f7fb5f

Please sign in to comment.