mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Make the Parameter grid use a workflow consistent with other grids. Fixes #1241
1. Altered variable control to make its UI consistent with privileges and Security labels. 2. Changed datamodel.js to handle duplicate rows at datamodel level and not UI/Control level. (See variable control for example)
This commit is contained in:
committed by
Dave Page
parent
5560d5b334
commit
c7d25c33f2
@@ -86,7 +86,7 @@ define(
|
||||
if (_.isUndefined(this.get('value')) ||
|
||||
_.isNull(this.get('value')) ||
|
||||
String(this.get('value')).replace(/^\s+|\s+$/g, '') == '') {
|
||||
var msg = '{{ _('Please enter some value!') }}';
|
||||
var msg = '{{ _('Please enter a value for the parameter.') }}';
|
||||
this.errorModel.set('value', msg);
|
||||
return msg;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user