Github user tbouron commented on a diff in the pull request: https://github.com/apache/incubator-brooklyn/pull/949#discussion_r42340738 --- Diff: usage/jsgui/src/main/webapp/assets/js/view/application-add-wizard.js --- @@ -85,6 +85,13 @@ define([ if (entity.config && _.size(entity.config)) result["brooklyn.config"] = entity.config; return result; } + function getConvertedConfigValue(value) { + try { + return $.parseJSON(value); + } catch (e) { + return value; --- End diff -- @neykov My bad, my wording was wrong in is case - you can force `getConvertedValue()` to spit out `String`value by warping the input value with double quote. Is that acceptable enough?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---