Skip to content

Commit

Permalink
Merge pull request #7967 from jrjohnson/update-prettier
Browse files Browse the repository at this point in the history
Update Dependencies
  • Loading branch information
jrjohnson committed Jul 16, 2024
2 parents b86120d + 1b7ed02 commit 0b6e34c
Show file tree
Hide file tree
Showing 2 changed files with 1,790 additions and 1,784 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import Component from '@glimmer/component';
export default class LeadershipCollapsed extends Component {
get count() {
const administratorsCount = this.args.showAdministrators
? this.args.administratorsCount ?? 0
? (this.args.administratorsCount ?? 0)
: 0;
const directorsCount = this.args.showDirectors ? this.args.directorsCount ?? 0 : 0;
const directorsCount = this.args.showDirectors ? (this.args.directorsCount ?? 0) : 0;
const studentAdvisorsCount = this.args.showStudentAdvisors
? this.args.studentAdvisorsCount ?? 0
? (this.args.studentAdvisorsCount ?? 0)
: 0;
return administratorsCount + directorsCount + studentAdvisorsCount;
}
Expand Down
Loading

0 comments on commit 0b6e34c

Please sign in to comment.