Skip to content

Commit

Permalink
Respect the quote style of the input file
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCooper committed Nov 27, 2024
1 parent 9bd4f09 commit 5874fc0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import { IOlympicData } from './interfaces';
export class AppComponent {
@ViewChild(AgGridAngular) private grid!: AgGridAngular;
public columnDefs: (ColDef | ColGroupDef)[] = [{field: 'test', cellRenderer: 'agSparklineRenderer', cellRendererParams: {sparklineOptions: {
type: "bar",
direction: "vertical"
type: 'bar',
direction: 'vertical'
}}}];
public rowData!: IOlympicData[];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export class AppComponent {
@ViewChild(AgGridAngular) private grid!: AgGridAngular;
public columnDefs: (ColDef | ColGroupDef)[] = [{
field: 'test', cellRenderer: 'agSparklineRenderer', cellRendererParams: {sparklineOptions: {
type: "bar",
direction: "vertical"
type: 'bar',
direction: 'vertical'
}}
}];
public rowData!: IOlympicData[];
Expand Down

0 comments on commit 5874fc0

Please sign in to comment.