1
0
Fork 0

Fixed the web UI to properly display JSON properties of user defined Foxx services configuration (#6611)

This commit is contained in:
Simon Oualid 2018-09-28 14:46:11 +02:00 committed by jsteemann
parent d78f7fa29e
commit 24866dcff6
1 changed files with 1 additions and 1 deletions

View File

@ -459,7 +459,7 @@
} else if (obj.type === 'json') {
methodName = 'createBlobEntry';
defaultValue = obj.default === undefined ? '' : JSON.stringify(obj.default);
currentValue = obj.current === undefined ? '' : obj.current;
currentValue = obj.current === undefined ? '' : JSON.stringify(obj.current);
checks.push({
rule: function (v) {
return v && JSON.parse(v);