From e31b4dffe13fd2ba48f0a8ccca7e7864bc201e02 Mon Sep 17 00:00:00 2001 From: Sigmabrogz Date: Sun, 15 Mar 2026 06:10:34 +0000 Subject: [PATCH] style: fix formatting --- ...historical-market-data-editor-dialog.component.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.component.ts b/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.component.ts index f6bfcf136..bdc11b3f7 100644 --- a/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.component.ts +++ b/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.component.ts @@ -10,7 +10,12 @@ import { inject } from '@angular/core'; import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; -import { FormControl, FormGroup, FormsModule, ReactiveFormsModule } from '@angular/forms'; +import { + FormControl, + FormGroup, + FormsModule, + ReactiveFormsModule +} from '@angular/forms'; import { MatButtonModule } from '@angular/material/button'; import { DateAdapter, MAT_DATE_LOCALE } from '@angular/material/core'; import { MatDatepickerModule } from '@angular/material/datepicker'; @@ -51,7 +56,10 @@ export class GfHistoricalMarketDataEditorDialogComponent implements OnInit { inject(MAT_DIALOG_DATA); public readonly form = new FormGroup({ - dateString: new FormControl({ value: this.data.dateString, disabled: true }), + dateString: new FormControl({ + value: this.data.dateString, + disabled: true + }), marketPrice: new FormControl(this.data.marketPrice) });