@ieeesa-npm/groups 0.12.2 → 0.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/assets/constants.json +1 -1
- package/esm2022/lib/components/create-group/create-group.component.mjs +2 -2
- package/esm2022/lib/groups.component.mjs +1 -2
- package/fesm2022/ieeesa-npm-groups.mjs +2 -3
- package/fesm2022/ieeesa-npm-groups.mjs.map +1 -1
- package/lib/services/groups.service.d.ts +13 -5
- package/package.json +1 -1
|
@@ -140,7 +140,7 @@ var createGroup = {
|
|
|
140
140
|
}
|
|
141
141
|
},
|
|
142
142
|
supportText: {
|
|
143
|
-
newParentGroup: "Choose a group
|
|
143
|
+
newParentGroup: "Choose a group from the available list.",
|
|
144
144
|
groupType: "Choose a group type from the available list.",
|
|
145
145
|
groupName: "Enter the name of the group.",
|
|
146
146
|
shortName: "Enter the abbreviation of the group.",
|
|
@@ -1630,7 +1630,7 @@ class CreateGroupComponent {
|
|
|
1630
1630
|
response?.forEach((option) => {
|
|
1631
1631
|
this.allowedParentGroupsOptions?.push({
|
|
1632
1632
|
id: option?.groupId,
|
|
1633
|
-
name: option?.groupAcronym,
|
|
1633
|
+
name: option?.groupName + ' (' + option?.groupAcronym + ')',
|
|
1634
1634
|
});
|
|
1635
1635
|
});
|
|
1636
1636
|
this.allowedParentGroups = response;
|
|
@@ -4792,7 +4792,6 @@ class GroupsComponent {
|
|
|
4792
4792
|
groupId: '',
|
|
4793
4793
|
groupTypeId: this.selectedGroupType?.id,
|
|
4794
4794
|
};
|
|
4795
|
-
this.showGroupFilter();
|
|
4796
4795
|
this.trimmedSearchTerm = '';
|
|
4797
4796
|
this.groupsService?.setGroupFunctionType(GroupFunctionType?.FILTER);
|
|
4798
4797
|
this.getGroups();
|