Skip to content

Commit 30cf1b4

Browse files
committed
refactor(code): width should have number typing
1 parent 4f4b231 commit 30cf1b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/angular-slickgrid/models/rowMoveManager.interface.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface RowMoveManager {
2222
singleRowMove?: boolean;
2323

2424
/** Width of the column */
25-
width?: string;
25+
width?: number;
2626

2727
/** Override the logic for showing (or not) the move icon (use case example: only every 2nd row is moveable) */
2828
usabilityOverride?: (row: number, dataContext: any, grid: any) => boolean;

0 commit comments

Comments
 (0)