8000 Fixed the web UI to properly display JSON properties of user defined … · mnemosdev/arangodb@24866dc · GitHub
[go: up one dir, main page]

Skip to content

Commit 24866dc

Browse files
soualidjsteemann
authored andcommitted
Fixed the web UI to properly display JSON properties of user defined Foxx services configuration (arangodb#6611)
1 parent d78f7fa commit 24866dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/apps/system/_admin/aardvark/APP/frontend/js/views/applicationDetailView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@
459459
} else if (obj.type === 'json') {
460460
methodName = 'createBlobEntry';
461461
defaultValue = obj.default === undefined ? '' : JSON.stringify(obj.default);
462-
currentValue = obj.current === undefined ? '' : obj.current;
462+
currentValue = obj.current === undefined ? '' : JSON.stringify(obj.current);
463463
checks.push({
464464
rule: function (v) {
465465
return v && JSON.parse(v);

0 commit comments

Comments
 (0)
0