Skip to content

Commit c1183f6

Browse files
committed
fix(datamanager): enable sr. no. cols to be resizable
1 parent cdae785 commit c1183f6

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/datamanager.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,11 @@ export default class DataManager {
7474
content: this.options.serialNoColumnLabel || '',
7575
align: 'center',
7676
editable: false,
77-
resizable: false,
77+
resizable: true,
7878
focusable: false,
7979
dropdown: false,
8080
sticky: true
8181
};
82-
if (this.options.data.length > 1000) {
83-
cell.resizable = true;
84-
}
8582
this.columns.push(cell);
8683
}
8784
}

0 commit comments

Comments
 (0)