Resovled a typo in rendering the NodeAjaxOptionsCell about getting the

options from the column schema for the cell.
This commit is contained in:
Harshal Dhumal 2016-01-22 13:23:06 +05:30 committed by Ashesh Vashi
parent 0eadd92a7f
commit 7f3c972d06

View File

@ -401,7 +401,7 @@ function($, _, pgAdmin, Backbone, Backform, Alertify, Node) {
optionValues = _.clone(this.optionValues ||
_.isFunction(this.column.get('options')) ?
this.column.get('options').apply(this) :
this.column.get(' options')),
this.column.get('options')),
select2_opts = _.defaults({}, col.select2, this.defaults.select2),
evalF = function(f, col, m) {
return (_.isFunction(f) ? !!f.apply(col, [m]) : !!f);