mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Pass the model properly, while checking enable/disable for Select control.
This commit is contained in:
@@ -218,7 +218,7 @@
|
|||||||
formatter: this.formatter
|
formatter: this.formatter
|
||||||
}),
|
}),
|
||||||
evalF = function(f, d, m) {
|
evalF = function(f, d, m) {
|
||||||
return (_.isFunction(f) ? !!f.apply(d, m) : !!f);
|
return (_.isFunction(f) ? !!f.apply(d, [m]) : !!f);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Evaluate the disabled, visible, and required option
|
// Evaluate the disabled, visible, and required option
|
||||||
|
|||||||
Reference in New Issue
Block a user