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:
parent
51a6e96b7f
commit
58ee947b35
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}),
|
||||
|
||||
|
|
Loading…
Reference in New Issue