FIX: Mobile group add dropdown was broken

It looks like we removed the bulk add modal but didn't update the mobile
template.
This commit is contained in:
Robin Ward 2020-08-14 21:03:41 -04:00
parent 51a6e96b7f
commit 58ee947b35
2 changed files with 4 additions and 11 deletions

View File

@ -10,8 +10,8 @@
{{#if canManageGroup}}
{{#if currentUser.admin}}
{{group-members-dropdown
groupName=model.full_name
showAddMembersModal=(route-action "showAddMembersModal")
showBulkAddModal=(route-action "showBulkAddModal")
}}
{{else}}
{{d-button

View File

@ -14,19 +14,12 @@ export default DropdownSelectBoxComponent.extend({
const items = [
{
id: "showAddMembersModal",
name: I18n.t("groups.add_members.title"),
name: I18n.t("groups.add_members.title", {
group_name: this.groupName
}),
icon: "user-plus"
}
];
if (this.currentUser.admin) {
items.push({
id: "showBulkAddModal",
name: I18n.t("admin.groups.bulk_add.title"),
icon: "users"
});
}
return items;
}),