Skip to content

Commit

Permalink
fix(data-grid): formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Ashkan Baghdoust committed Oct 31, 2024
1 parent c897add commit afe82d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/components/data-grid/data-grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class DataGrid {
/** (optional) Set to true to add selection column */
@Prop() selectable?: boolean = false;
/** Read-only selection array - populated with raw data from selected rows */
@Prop({mutable: true}) selection: any[] = [];
@Prop({ mutable: true }) selection: any[] = [];
/** (optional) Shade every second row darker */
@Prop() shadeAlternate?: boolean = true;
/** (optional) Injected css styles */
Expand Down

0 comments on commit afe82d8

Please sign in to comment.