mirror of https://gitee.com/bigwinds/arangodb
This commit is contained in:
parent
e7810e1956
commit
7e0a79b585
|
@ -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
|
||||
|
|
|
@ -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] = '';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue