Skip to content

Commit

Permalink
Remove comments and unnused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-mendonca-encora committed Sep 26, 2023
1 parent 82046f3 commit 7e2e8cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ export class PolicyDatasetsComponent
prop: 'agent_group',
name: 'Agent Group',
resizeable: true,
canAutoResize: true, // Allow auto-resizing
flexGrow: 3, // Set flexGrow for auto-adjustment
canAutoResize: true,
flexGrow: 3,
cellTemplate: this.groupTemplateCell,
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
Output,
SimpleChanges,
ViewChild,
Renderer2,
} from '@angular/core';
import { AgentPolicy } from 'app/common/interfaces/orb/agent.policy.interface';
import { FormBuilder, FormControl, Validators } from '@angular/forms';
Expand Down Expand Up @@ -66,7 +65,6 @@ export class PolicyInterfaceComponent implements OnInit, AfterViewInit, OnChange
constructor(
private fb: FormBuilder,
private orb: OrbService,
private renderer: Renderer2,
) {
this.policy = {};
this.code = '';
Expand Down

0 comments on commit 7e2e8cd

Please sign in to comment.