From 7f3c972d066b5378e6a368622b210399add4183d Mon Sep 17 00:00:00 2001 From: Harshal Dhumal Date: Fri, 22 Jan 2016 13:23:06 +0530 Subject: [PATCH] Resovled a typo in rendering the NodeAjaxOptionsCell about getting the options from the column schema for the cell. --- web/pgadmin/browser/static/js/node.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/browser/static/js/node.ui.js b/web/pgadmin/browser/static/js/node.ui.js index 9eb7e2637..f2d04a2a8 100644 --- a/web/pgadmin/browser/static/js/node.ui.js +++ b/web/pgadmin/browser/static/js/node.ui.js @@ -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);