Skip to content

Commit ecb84c5

Browse files
authored
fix(column): data-type attribute name (#33)
1 parent 1e55702 commit ecb84c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/column.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class IgcGridLiteColumn<T extends object>
4343
public field!: Keys<T>;
4444

4545
/** The data type of the column's values. */
46-
@property()
46+
@property({ attribute: 'data-type' })
4747
public dataType?: 'number' | 'string' | 'boolean' = 'string';
4848

4949
/** The header text of the column. */

0 commit comments

Comments
 (0)