Fix Select2 issues. Fixes #1418. Fixes #1434

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:
Harshal Dhumal
2016-07-05 12:58:48 +01:00
committed by Dave Page
parent 6c6660e576
commit 4077de2187
4 changed files with 23 additions and 5 deletions

View File

@@ -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);
}
}
});