1
0
Fork 0

fix #7900 - null bind values do not change to empty string anymore (#7917)

This commit is contained in:
Jan Christoph Uhde 2019-01-09 10:04:49 +01:00 committed by Jan
parent e7810e1956
commit 7e0a79b585
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,10 @@
devel
-----
* fix issue #7900: Bind values of `null` are not replaced by
empty string anymore, when toggling between json and table
view in the web-ui.
* Use base64url to encode and decode JWT parts.
* updated bundled curl library to version 7.63

View File

@ -1154,6 +1154,8 @@
_.each(foundBindParams, function (word) {
if (self.bindParamTableObj[word]) {
newObject[word] = self.bindParamTableObj[word];
} else if (self.bindParamTableObj[word] === null) {
newObject[word] = null;
} else {
newObject[word] = '';
}