Skip to content

Commit

Permalink
ALCS-1858 Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarreta committed Dec 12, 2024
1 parent 8442fbb commit 56d9f9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ export class ConditionComponent implements OnInit, AfterViewInit {
showSecurityAmountField = false;
singleDateFormated: string | undefined = undefined;
stringIndex: string = '';
today!: number;

CONDITION_STATUS = CONDITION_STATUS;

Expand All @@ -68,9 +67,7 @@ export class ConditionComponent implements OnInit, AfterViewInit {
private conditionService: ApplicationDecisionConditionService,
private conditionLotService: ApplicationDecisionComponentToConditionLotService,
private decisionService: ApplicationDecisionV2Service,
) {
this.today = moment().startOf('day').toDate().getTime();
}
) {}

async ngOnInit() {
this.stringIndex = countToString(this.index);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,8 @@ export class ConditionComponent implements OnInit, AfterViewInit {
isReadMoreVisible = false;
conditionStatus: string = '';
stringIndex: string = '';
today!: number;

constructor(private conditionService: NoticeOfIntentDecisionConditionService, private decisionService: NoticeOfIntentDecisionV2Service,) {
this.today = moment().startOf('day').toDate().getTime();
}
constructor(private conditionService: NoticeOfIntentDecisionConditionService, private decisionService: NoticeOfIntentDecisionV2Service,) {}

async ngOnInit() {
this.stringIndex = countToString(this.index);
Expand Down

0 comments on commit 56d9f9f

Please sign in to comment.