File tree Expand file tree Collapse file tree
src/components/access_group Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ export default {
134134 : this .groupInformation .renewalCount ;
135135 },
136136 pendingRenewalsIntroText () {
137- if (this .groupInformation .renewalCount == 1 ) {
137+ if (this .groupInformation .renewalCount === 1 ) {
138138 return this .fluent (
139139 ' access-group_membership-management' ,
140140 ' pending-renewals-single' ,
Original file line number Diff line number Diff line change @@ -79,10 +79,10 @@ export default {
7979 : groupData .member_count ;
8080 groupInformation .invitationCount = ! groupData .invitation_count
8181 ? 0
82- : groupInformation .invitation_count ;
82+ : groupData .invitation_count ;
8383 groupInformation .renewalCount = ! groupData .renewal_count
8484 ? 0
85- : groupInformation .renewal_count ;
85+ : groupData .renewal_count ;
8686 groupInformation .requestCount = groupData .request_count ;
8787 groupInformation .invitationConfig = groupData .invitation ;
8888 groupInformation .isCurator = Boolean (groupData .curator );
You can’t perform that action at this time.
0 commit comments