Skip to content

Commit

Permalink
style: format§
Browse files Browse the repository at this point in the history
  • Loading branch information
felixw committed Sep 29, 2023
1 parent 07cd6a4 commit 470a561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/components/data-grid/data-grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class DataGrid {
/** (optional) Set to false to hide table, used for nested tables to re-render upon toggle */
@Prop() visible?: boolean = true;
/** (optional) Title for sortable columns */
@Prop() sortableColumnTitle?: string = "Activate to sort column";
@Prop() sortableColumnTitle?: string = 'Activate to sort column';
/**
* (optional) set localization for sort, toggle and select/deselect table
* Default is English.
Expand Down Expand Up @@ -1010,7 +1010,7 @@ export class DataGrid {
}
return (
<th
title={ sortable ? this.sortableColumnTitle : undefined}
title={sortable ? this.sortableColumnTitle : undefined}
{...props}
{...(sortable
? {
Expand Down

0 comments on commit 470a561

Please sign in to comment.