[CST-4058] 'colspan' removed from table header; code cleanup

This commit is contained in:
Davide Negretti
2021-09-02 16:05:22 +02:00
parent 4b3e0e8d09
commit d66cf881fb
5 changed files with 5 additions and 9 deletions

View File

@@ -189,7 +189,6 @@ export class GroupFormComponent implements OnInit, OnDestroy {
});
this.formModel = [
this.groupName,
// this.groupCommunity,
this.groupDescription,
];
this.formGroup = this.formBuilderService.createFormGroup(this.formModel);
@@ -205,11 +204,6 @@ export class GroupFormComponent implements OnInit, OnDestroy {
this.groupBeingEdited = activeGroup;
if (linkedObject?.name) {
// this.formModel = [
// this.groupName,
// this.groupCommunity,
// this.groupDescription,
// ];
this.formBuilderService.insertFormGroupControl(1, this.formGroup, this.formModel, this.groupCommunity);
this.formGroup.patchValue({
groupName: activeGroup != null ? activeGroup.name : '',