Skip to content

Commit d5567ec

Browse files
author
Tim Shawver
committed
Fix issue where index columns were always bold, instead of obeying the boldIndex option.
1 parent 9005d45 commit d5567ec

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

js/src/qgrid.widget.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,7 @@ class QgridView extends widgets.DOMWidgetView {
352352
// don't allow editing index columns
353353
if (cur_column.is_index) {
354354
slick_column.editor = editors.IndexEditor;
355-
356-
slick_column.cssClass += ' idx-col';
355+
357356
if (cur_column.first_index){
358357
slick_column.cssClass += ' first-idx-col';
359358
}

0 commit comments

Comments
 (0)