Skip to content

Commit 7d1a763

Browse files
author
Tim Shawver
committed
Compare to false so that if the editable property is null we use the default behavior of having the column be editable.
1 parent 4b60c8b commit 7d1a763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/src/qgrid.widget.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ class QgridView extends widgets.DOMWidgetView {
354354
continue;
355355
}
356356

357-
if ( ! (cur_column.editable) ) {
357+
if (cur_column.editable == false) {
358358
slick_column.editor = null;
359359
}
360360

0 commit comments

Comments
 (0)