Skip to content

Commit b81ac28

Browse files
authored
Update index.ts
1 parent a6bdb6e commit b81ac28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default class NumberColumnType {
1818
cellProperties = (): RevoGrid.CellProps => ({ class: { ['align-right']: true } });
1919

2020
cellTemplate = (_h: RevoGrid.HyperFunc<VNode>, p: RevoGrid.ColumnDataSchemaModel): string => {
21-
const parsed = parseFloat(p.model[p.prop], 10);
21+
const parsed = parseFloat(p.model[p.prop]);
2222
if (isNaN(parsed)) {
2323
return '';
2424
}

0 commit comments

Comments
 (0)