mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1. Select2 control fixed for multi-select mode. 2. Index constrains (primary and unique key) fixed column listing issue. 3. Table node "inherited from" (Select2 control) was not showing table name with public schema
This commit is contained in:
committed by
Dave Page
parent
6c6660e576
commit
4077de2187
@@ -1790,7 +1790,11 @@
|
||||
return encodeURIComponent(rawData);
|
||||
},
|
||||
toRaw: function(formattedData, model) {
|
||||
return decodeURIComponent(formattedData);
|
||||
if (_.isArray(formattedData)) {
|
||||
return _.map(formattedData, decodeURIComponent);
|
||||
} else {
|
||||
return decodeURIComponent(formattedData);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user