Skip to content

Commit ea29353

Browse files
committed
Replace missing translation for StudyGroup member
1 parent a731ed5 commit ea29353

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/study_groups/_form.html.slim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
thead
1111
tr
1212
th = Exercise.human_attribute_name('selection')
13-
th = StudyGroup.human_attribute_name('member')
13+
th = ExternalUser.human_attribute_name('name')
1414
= collection_check_boxes :study_group, :study_group_membership_ids, @members, :id, :id do |b|
1515
tr
1616
td = b.check_box class: 'form-check-input'

app/views/study_groups/show.html.slim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ h2.mt-4 = StudyGroup.human_attribute_name('members')
1414
table.table class=(@study_group.users.present? ? 'sortable' : '')
1515
thead
1616
tr
17-
th = StudyGroup.human_attribute_name('member')
17+
th = ExternalUser.human_attribute_name('name')
1818
- @study_group.users.each do |user|
1919
tr
2020
td = link_to_if(policy(user).show?, user.displayname, user)

0 commit comments

Comments
 (0)